I don't know delphi, but GetParameters takes a pointer to a ISAOPNodes that it populates. Once you have this populated ISOAPNodes interface, you can call...
yes, but I am too stupid probably. I do not bring it with the soap server sample to run. I don't know which are the right properties: e.SetMethod "?","?" ...
I suggest you walk through the tutorial, that explains how you can find that information out from the WSDL of the service you are calling. Cheers Simon...
Hi all, Has anyone seen this before: I'm using WSDL wizard to generate a DLL to allow VB and ASP clients to interact with a web service written in Java (using...
... Typically you'll see this when the fault code is incorrectly typed as an xsd:string by the server. Can you post the server response when this occurs (use...
The problem was that I was calling GetQuote instead of getQuote. Thank you. ... ISAOPNodes that it ... can call Create. ... function ... something ... delayed-...
Hi Simon, Thanks for your suggestion, and actually we did fix it from the Java side - Glue has a SOAPException which we need to use as the parent (rather than...
Hi there! First of all, thank you for your great effort! We have an application on the desktop, which has to communicate with the PDA, but the user (in front...
Hi, i have a problem with getting the value of a "long"-type. i´m using: PocketSOAP 1.4.3 Windows 2000 MSXML 4.0 SP2 The following script shows my problem. I...
Hi, I'm trying to upload a DIME attachment using PocketSOAP 1.5 beta, to an ASP.NET service through SSL. I also have to send Specific SOAP headers and use...
... I'm not aware of an XML-RPC server for PocketPC, but i haven't really looked. ... You could possibly use RAPI to trigger starting a new process on the PDA...
... I'm not entirely sure what the error message means, I looked through the WSDL and my schema reference and nothing poped out as being a problem. .NETs...
xsd:long which is a 64 bit signed int is mapped to variant of type VT_I8. but VBScript doesn't support that variant type, you'll either have to change the...
Hi, You can't trace SSL at the HTTP level, that's the whole point of SSL. One way to debug what's going on, is to use stunnel, this will let you have a normal...
Hi Simon, ... This is great, thanks! Worked like a charm. I figured out the problem. It's that the ASP.NET service sends back a cookie in the first call: ...
... I found out that this also works (my mistake) and that I recreated the HTTP Transport object for each call. Reusing the same HTTP object sends back the ...
Pardon the newbie question. We're using PocketSOAP client-side hooking into a PoS application and using SOAP to hook into a GLUE server and a bunch of Java...
... when pocketSOAP see's a nil value, it returns a variant of type VT_NULL, you can check the node's value for this before trying to assign it to a variable...
I'm in the process of adding this into PocketHTTP, it'll be in the next release, you use it like this Dim req As CoPocketHTTP Set req = New CoPocketHTTP Dim...
Hi, I've now found something that was kind of weird, and probably an obscure one but here goes: I need to call an ASP.NET service through SSL, and I need to...
when I run this code in a VB-script: set req = CreateObject("pocket.HTTP") set res = req.GetResponse("http://tv2.no", "") wscript.echo res.String I get a GPF...
... are you passing an envelope object to send or a serialized envelope ? as outlined on the beta page, you need to now pass the envelope object itself, see ...
... In Addition, I just tweaked the code, so that if you're still using the old style of passing a serialized envelope, it will still reset the content-type...