Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Dynamic Array insert of new record

28 views
Skip to first unread message

Ronald Stubbe

unread,
Aug 3, 2008, 2:35:37 PM8/3/08
to
Hi,

I am trying to use a Dynamic array that gets created by WSDL import.

The structure that the import utility creates is:

class permissionrecord : public TRemotable {
private:
WideString Fpermission;
public:
__published:
__property WideString permission = { read=Fpermission,
write=Fpermission };
};

typedef DynamicArray<permissionrecord*> permissions;


When i receive data via the SOAP server, I can read it.

When I need to send data back to the server using this structure, I am
not able to write data into the structure.

Is there anyone who can give me a clue how to use this structure by
creating a new instance, and adding data.

I am stuck on this one for 5 days, and can't figure it out.

Thanks

Ed Mulroy [TeamB]

unread,
Aug 3, 2008, 3:26:45 PM8/3/08
to
This is the group where the old Borland C++ compiler is covered.

You will find people familar with C++ Builder in newsgroups where that
product is covered. Each of those groups has the word 'cppbuilder' in its
name. Try posting your question in one of those groups.


Ronald Stubbe

unread,
Aug 4, 2008, 3:57:19 PM8/4/08
to
got the answer in another group:

permissions PermissionArray;
...
permissionrecord *record = new permissionrecord;
record->permission = "...";
...
PermissionArray.Length = PermissionArray.Length + 1;
PermissionArray[PermissionArray.High] = record;
...

Thanks

Ed Mulroy [TeamB] schreef:

husni...@gmail.com

unread,
May 29, 2013, 1:13:37 AM5/29/13
to
hallo

i have an error When i receive data via the SOAP server, i cannot read it
0 new messages