Hello All
I'm replacing an EAServer CORBA PowerBuilder & Web Java multitiered app with a custom XML based transport layer
I replaced CORBA ResultSets with ADO ResultSet[ ] and it works fine PB to PB.
Now I need to go PB to C# via XML
The challenge is the ResultSet data type CreateFrom a datastore. How is it possible to serialize a ResultSet for use in C# without the using a DataStore to convert the ResultSet back and forth to a proprietary BLOB format (which can be string encoded).
The CoderObject only accepts a BLOB
Blob( ) only accepts a String
Yes the PB side will have a datastore, but the C# web side does not have datastore.
Thanks
==Yakov