I am a VBScript newbie and am having trouble figuring out how to serializer and deserialize complex-types in vbscript. Does anyone have a sample script they...
... I don't think you can do it that way entirely in VBScript. However you can access complex Types without having to use custom deserializers, see the docs...
Thanks for answering. Are you saying that in vbscript I can't make a custom serializer for a complex-type? I'd hate to have to go back to trying to make this...
custom [de]serializer are com classes, you can't write com classes in VBScript. However you can use complex types without any custom [de]serializers by using...
Sorry to be a pest but if this is absolutely not possible please let me know so I can stop bashing my head against my computer... BTW, is there a way for me to...
I'm porting my app from PocketPC to a CE4.2 device. Are there pocketsoap binaries available for linking into CE4.2 apps running on ARMV4I? Or do I have to...
That was my first thought, however, It did write the *.cls files to the directory. I recieved the error (I'm assuming) during the generation of the VB Project...
Great!!! Way to go Simon, really works. Thank you very much. Rico Pamplona (aka Koi Rix) *********** REPLY SEPARATOR *********** ... Rico Pamplona AVSOFT -...
You can do it, its just different, did you read the link i've posted (for the 3rd time now) http://www.pocketsoap.com/weblog/stories/2004/06/0027.html this...
Simon, Would this potentially be the problem I had written about previously, where after a large number of transactions the system would just stop sending...
This may have been answered elsewhere and I'll try to look... and I may have some ideas from my work with IE - but if someone has a link or guidance it would...
I did see that page thanks. but it seems to gives me the array RPC encoded as opposed to straight XML like the WSDL expects. Here is the Type from the WSDL...
Hi all! This is my first message in this mail-list, so i'd like to meet you my self. My name is Juan Luis (a literal translation could be "John Luis" :P), and...
The namespace is pulled from the WSDL & Schema definitions, can you post your WSDL (as an attachment) so i can see what its specifying. Cheers Simon...
I have run the PocketSOAP.1.4.3.exe install on my computer. In a PowerBuilder script, I have the following code: OLEObject soap, http soap = CREATE OLEObject...
Hello, I our application on PocketPC it happens that we have some big transfert. Sometimes it can be quite slow and we want to give the user the possibility to...
... The WSDL says that the elements should be namespace qualified (see the elementFormDefault attribute on the schema element). You should be able to change...
i get runtime error -2146762487 (800b0109) "Method Send of ISOAPTransportDisp failed" Which is (using errlook.exe) turns out to be "A certificate chain...
... No, I have been thinking about adding an async interface to PocketHTTP which may then allow you to stop the operation. No firm plans or schedule yet for...
... Simon, thanks for the reply. I've actually taken the trouble to import the cert into the current user account store, which is how you get past that...
Hi, PocketHTTP v1.2.1 is now available, this is a minor update from the 1.2 release, and contains the following changes * Dependencies are all now statically...
Dear Simon, Thanks for the great news !!! I noticed you mentioned this: "Compression support, including the ability to compress the request body." Does this...
Hi, That's been supported for a while, do set http = CreateObject("PocketSOAP.HTTPTransport") http.options("compression.enabled") = true will send the request...