I am using soaplite and i'm very new to it. I would like to create the following header in soaplite and i dont know how to do it. <SOAP-ENV:Header> ...
... to ... the ... Schema ... below. ... Hello All, I'm replying to this several months after the original message for the benefit of anyone searching through...
Can anyone think why using $soap_obj->call('ns:getDocumentProcessingStatus39;, SOAP::Data=HASH(0x805bf54), SOAP::Data=HASH(0x80ee1d4)); (and yes, those last 2...
... Paul, thanks for the reply. I finally got to the point that I will need to deal with such WSDLs. I wonder what I need to do when dealing with tModel WSDL...
Hi Group, I manage to create soap server and client. But the soap server is using HTTP daemon. I would like to change the server to be a CGI- based server but...
There seems to be a problem whebn you send the following message from client: <documents> <url>xxx1</url> <url>xxx2</url> <url>xxx3</url> </documents> The...
Hello, attention, this may be a newbie question! I try to use the famous short syntax for autodispatch in a function, but there is a big problem for me with ...
I've found that when a SOAP Fault is generated the faultcode tag has an xsi:type attribute whose value is "string". Shouldn't the value for this attribute be...
Hello again soaplite people, I would like to have my SOAP-enabled server do forking so it is more scalable, but not on a per-request basis as (apparently) in...
Hi Frank-Peter, This may help: http://groups.yahoo.com/group/soaplite/message/1354 http://groups.yahoo.com/group/soaplite/message/838 Best wishes, Paul. ... ...
I've been writing a lot of code the last few days that provides custom serialization of classes into XML for SOAP calls (based on WSDL schema). Is there a...
Hi Paul, First of all: You did a great job with SOAP::Lite; unbelievable the possibilities. And thank You for the hint. Now it works fine. Regards Frank-Peter ...
Hi, I am trying to get the following syntax: <tickers s:type="A:Array":arrayType="y:string[3]"> <item>YHOO</item> <item>MSFT</item> <item>PSFT</item> ...
Hi poweroftibx, ... my $som = $soap->getNewsByTicker( SOAP::Data->name('tickers39; => ['TIBX39;,'YHOO']) ); would look more natural. Best wishes, Paul. ... ...
Hi Randy, ... Isn't that what xmlschemas() method does? Look at examples\customschema.pl. It should work for complex types too. Best wishes, Paul. ... ...
Hi Michael, You're right, it's incorrect. This fix is on the list. Thanks. Best wishes, Paul. ... __________________________________________________ Do you...
This message explains why this happens and describes on of the solutions: http://groups.yahoo.com/group/soaplite/message/747 ACCESSING HEADERS AND ENVELOPE ON...
Hi Zaid, Looks like misconfiguration in IIS for me. There is not enough information to give more specific answer. If you can't run ANY CGI script from the same...
Hi Weidong, ... Yes, you should be able to. Regardless of the presence of <service> section ->service($wsdl, '', $myPortTypeName) will allow you to choose...
Hi Chad, ... no. Can you show the client-side code? Or at least a wire-dump? Or better both. I'm slightly confused about the question. Best wishes, Paul. ... ...
Hi Zaid, ... my(@headers) = ( SOAP::Header->name('login39;)->uri("some-uri"), SOAP::Header->name('password39;)->uri("some-uri"), ); Then just provide it as an...
Paul, I am happy to report that it works fine. We have WSDLs that defines multiple port types/services, and for each new call, the endpoint is different. What...
1937
Mike Schroeder
MikeSchroeder@...
Oct 18, 2002 3:35 pm
Paul -- back in: http://groups.yahoo.com/group/soaplite/message/421 you mentioned thinking about how you might combine SOAP::Lite and POE -- I am just starting...
Hi, I have the following kind of soap response: <s:Envelope ...> <s:Body> <Response> <SpaceList> <Space> <field1>...</field1> <field2>...</field2> <field3> ...
Hi Weidong, ... > The only minor problem I noticed is, when I do the above > initialization for multiple WSDL files, say w1, w2, w3, w4, then I > make...
Hi Weidong, I replied to the similar message just yesterday ;). Reasons: http://groups.yahoo.com/group/soaplite/message/747 1. Navigate through envelope using...
... Paul, thanks for the response. I choose to use #3, SOAP::Custom::XML::Deserializer. #1 does not work well in this case; #2 requires patching, which I...