Hello, I was wondering if anyone might be able to offer some insight on my problem. I am writing tests for a perl script which relies on SOAP to send and ...
All, I am hoping someone will be able to assit me, I am trying to install SOAP::Lite from the latest tarball I download. Perl version is 5.8.8, running on...
... [trimmed] ... I'd inspect what's actually being sent over the wire -- I'm guessing that you have an XML declaration inside the SOAP body (ie, your solution...
After mailing my response, I received a number of bounce messages from accounts that have been deactivated, but also that I suspect should never have been...
Hi Andrew, I think that you need to install the 'version' module (http://search.cpan.org/~jpeacock/version-0.74/). Eddie From: soaplite@yahoogroups.com...
Thanks Joe for the help -- I was able to solve my problem, it seems that the xml file needs to be deserialized for it to be cast to a SOM object. Instead of...
Replying to myself, I figured this out in the time it took the message to come back to my inbox. The mistake was including the "soap:..." strings in the path...
Hi, I need to use SOAP to access data from a SOAP server which uses WSDL over HTTP. My problem is that I need to change the SOAPAction that is sent with the...
... I do it this way: my $soap = new SOAP::Lite; ... $soap->on_action( \&custom_action ); ... sub custom_action { my ($uri,$method) = @_; return $uri . '/' ....
Hi Guys, I've been struggling to understand how the bits and pieces of code in SOAP::Lite and the data in the produced XML output hang together, and am almost...
... Hi Marlin, And thanks for that input. ... I'll work until Monday, in the hopes that one of the "Gods that be" on the list say "Sure, it's easy: you just do...
... Thanks for the heads-up ... :} I've been using Net::LDAP quite extensively for the last two years, so should be reasonably fine with references (i hope). ...
can anyone give me some explaination how I modify the soaplite encoding style into rpc/literal? default is rpc/encoded. I've searched it in internet, but find...
Been a while since I've done SOAPLite but if I remember correctly you can use something like: SOAP::Data->name( 'zip' => '01234')->type('') to remove the...
Dear All, I'm trying to write a client to call the 'LeadInsert' method based on the wsdl attached (it's generated by a Java CRM from Oracle). My code is as...
Hi, I have a SOAP service running as a .pm via Apache2::SOAP, which is a SOAP-specific mod_perl2 wrapper lib. However, I cannot get the mod_perl2 methods for...
It's been a while so I can't recall if we had problems with this also but we have a similar Apache2 setup and just used: $ENV{REMOTE_ADDR} HTH. Eric...
I'm trying to use SOAP Lite through mod_perl to integrate with QuickBooks. QuickBooks does a GET /soap HTTP/1.1 (/soap is the endpoint I'm using) in order to...
Dear Soap:lite Communtiy. I writing a soap:lite client for some web service which returns me a byte array of an image which I would like to save to a file. Can...
Hi, I'm on SOAP::Lite version 0.66, using a WSDL (below) to make the ... my $soap = SOAP::Lite->service('file://path/to/Authentication.wsdl') ->proxy($ws_url);...
Hi I suspect this may be obvious but I am not clear on what happens where. I have to make a SOAP method call to a 3rd party, passing a return URL as one of the...
This is a normal substitution and *should* happen automatically; & (like < and >) is an illegal XML character, so it gets encoded as & in the SOAP XML...
I have a couple of scripts which had the following construct for custom http headers which worked with v0.69: $client->transport->http_request ->header('Foo'...
Hi, Sorry if this has been asked a lot but I wasn't able to find a clear solution to this yet. I'm working on some scripts to upload base64 encoded files to a...
Jeremy
s6a9d6u9s@...
Jul 9, 2008 9:30 pm
6173
Hi, I'm new to SOAP::Lite and I've been following the simple examples I've found. However I'm stuck on whats happening here: The simple test server takes a...