I have a method (get_fees) for the Web service returning the 'fees' XML and I'm able to do that by simply populating my_variable with the XML and returning...
I'm using XML::XPath to access the element and attribute values - works out well - pat example $result = $soap ->readable(1)->outputxml(1) ->proxy(39;http://',...
A simple question, but I can't find the answer on www.soaplite.com I have a SOAP method that returns multiple results: sub Foo { my $Self = shift; my...
Hi, I have a soap serializer (server) that usually returns strings for most requests. However, for one request, it returns an array of strings. In the past, I...
Hi I am making SOAP requests in the following way (have had to remove real urls so not runnable as is but hopefully it makes enough sense): ###### package...
Hi Everyone, I built a module with stubmaker.pl to connect to a web service which generated two parameters <code snippet of the two parameters> parameters => [...
My apologies if this has been explained before. I have set up a simple Soap server, and it is working as expected. However i do have one question, When adding...
This is because mod_perl keeps the code in memory (and as such, doesn't necessarily reload it when the code changes) - however you shouldn't need to stop and...
Hello, I'm new to SOAP::Lite and I'm having what's probably a silly error on my part, but I haven't been able to find anything related in the archives here or...
... Do it this way: $CallCredentials = SOAP::Data ->name(credentials => \SOAP::Data->value( SOAP::Data->name(Username => $UserName)->type('string'), ...
It''s been a while since I played with stubmaker.pl but if I remember correctly it's abilities are slim. I remember having to modify the generated Perl...
Sorry if this is too obvious and I'm just taking a guess. Perl know nothing about 'true' and 'false39;. Both are true as opposed to '' or 0. Try value => '' or...
Apache/2.2.4 mod_perl/2.0.3 Perl/v5.8.8 SOAP-Lite-0.710.08 Ive noticed that sometimes my soap requests will fail every 6th request which is the same number of...
It is a max_client setting in the server. You should receive an error message about server busy (maybe?) p ... From: bnyec To: soaplite@yahoogroups.com Sent:...
... Fault string says you send a wrong envelope namespace. It should be xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" If there are problems I wouldn't...
I am using SOAP::WSDL (what I heard is a pre processor to the SOAP::Lite that runs underneath). Started with the usual wsdl2perl generated files (very handy,...
... I'm only familiar with SOAP::Lite where you can also change the envprefix with adding this line: $SOAP::Constants::PREFIX_ENV = 'soap'; ... It'd always be...
Thanks for your reply, Eric. I certainly have not ruled out the likelihood I am missing something obvious! What I am trying to understand is the logic of how...
I had the same issue with the SOAP-ENV prefix - here is the answer. http://tech.groups.yahoo.com/group/soaplite/message/6124 p. ... From: cracknphrack To:...
Nope, time is not a factor. waited a few mins before making 6th request. Â Discovered where the problem is, If i add a new package/pm and make my requests to...
Hi. One of our supplies updated their .net soap interface and our existing SOAP::Lite code is now failing. We're using a wsdl specification, so all we've...