I'm trying to connect to a SOAP-daemon with a https connection and want to make a ssl authentication but i get an error message: 500 proxy connect failed:...
Announcement: The latest release (available at the following URLs) SOAP-MIME-0.55-7 fixes a critical bug in SOAP::MIME that causes a crash when you attempt to...
I am working on a simillar one client side only, noitced that the proxy authentication worked by passing the user/password in the https_proxy env variables Try...
... Hi, Andre, Try including the module from your soap_startup.pl (if you use one) or via a PerlRequire Apache directive. I don't if this is a DynaLoader ...
Okay, I am poring over this and I don't see any typos or obvious screwups. I am getting the following error from my freshly installed SOAP::Lite module: ...
Hi I have a trivial client calling a mod_perl enabled server, the server returns the following header. ... Client-Date: Sat, 19 Apr 2003 19:58:59 GMT ...
I'm fairly new to perl and very new to SOAP and SOAP::Lite... How do I nest xml elements ? (example below, merchantName and merchantIdentifier nested in...
This is really really weird... and tricky. It exposes a lot of the configurability of SOAP::Lite, but also a lot of its shortcomings - especially in regard to...
The multirefs are totally OK. That is part of the XML specification and should not impact your SOAP client or server. The output you provided helps and it...
Wow thanks ! I'm sure this would clear up any issues I had earlier using SOAP::Lite for other web services as well. Any chance of SOAP::Lite39;s WSDL/XML Schema...
There is currently an effort underway to rework a lot of SOAP::Lite, and I imagine supporting WSDL (and thus XML Schemas) more robustly will be a key objective...
I'm writing a perl client connecting to a .Net web service. It seems that I can successfully get to the correct web service api, but, the problem is that the...
Hi, Could someone tell me the best way (or any way) to strip off the characters in the Google API response for {title} in SOAP::Lite. This is what I get for a...
Hi all, I'm having problems grabbing parameters by name from the client. I have created a module, MyWorld, containing a function, MyGoodBye, which is loosely...
Thanks Byrne, you got me started on it, ya might have made a typo though so here is my final result for posterity (note prefix and uri change in method: my...
I've already tried specifying the type, getting the same results. Actually, I've removed it after studying an xml message generated by a .Net client, that one...
Hey again, I've been mucking about with this issue some more, and have made little progress. The array that it is returning a reference to contains 2 elements,...
2550
Duncan Cameron
dcameron@...
Apr 24, 2003 6:56 pm
... Michael A couple of things are not clear from your original post. Have you defined the class MyWorld to inherit from SOAP::Server::Parameters? If not, then...
Duncan, Thanks, I overlooked the inheritance text in the example. Once I added use vars qw(@ISA); @ISA = qw(SOAP::Server::Parameters); everything worked just...
Hello All, I have been experimenting with a SOAP::Lite client to a web service implemented using Apache SOAP. The service sets a cookie on the response to an...
[Replying to my own post] On Fri, Apr 25, 2003 at 08:50:57AM -0400, Alan D. Salewski spake thus: *snip* ... *snip* Evidently I did not read through enough of...
is there an easy way to grab the bytelength (Content-Length) of the outgoing http message... I'd like to dump it to a db to record any anomalies as most of my...
2555
Andre Bonhote
andre@...
Apr 29, 2003 9:55 am
Hi Quinn Thanks for your response. ... Ok, what I did now is write this into my .htaccess: PerlRequire Image/Magick.pm According to mod_perl(1) this should...
Hi Folks, i have to send input arguments for a soap-function in the following structure: <customers> <customer> <no>1001</no> </customer> <customer> ...
... Hi Torsten, You could try something like the following: my $arg = SOAP::Data->name('customers39;) ->value([SOAP::Data->name('customer39;) ...
2558
Andre Bonhote
andre@...
Apr 29, 2003 1:30 pm
Chris, SOAP::Lite-List On Tue, Apr 29, 2003 at 11:28:24AM +0100, chris@... wrote: [lots of helpful information about PerlRequire snipped] Thanks for...
Hi Folks, i got a little problem: i call a function via: my $result = $soap->call( $method => $arguments )->result; my Soap Client is initalized with this...