... 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). ...
6156
Andrej Ricnik-Bay
lemmetink
May 16, 2008 1:36 am
... 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...
6155
lemmetink
May 14, 2008 3:36 am
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...
6154
Thomas J Pinkl
tpinkl
May 9, 2008 6:13 pm
... I do it this way: my $soap = new SOAP::Lite; ... $soap->on_action( \&custom_action ); ... sub custom_action { my ($uri,$method) = @_; return $uri . '/' ....
6153
keith_unite
May 8, 2008 2:43 pm
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...
6152
Chris Woodfield
cwoodfieldatl
May 4, 2008 4:39 pm
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...
6151
Chris Woodfield
cwoodfieldatl
May 4, 2008 4:31 pm
Hello, I have a script that sends the following XML to a web service: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope...
6150
Andrew Berry
goolies_tg
May 2, 2008 2:03 pm
Excellent, that worked, thank you very much. Much appreciated. Andrew...
6149
Joe Joe
killgore9999
May 1, 2008 5:27 pm
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...
6148
Edward Kawas
kawas7
May 1, 2008 4:18 pm
Hi Andrew, I think that you need to install the 'version39; module (http://search.cpan.org/~jpeacock/version-0.74/). Eddie From: soaplite@yahoogroups.com...
6147
Joe Hourcle
jhourcle
May 1, 2008 2:54 pm
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...
6146
Joe Hourcle
jhourcle
May 1, 2008 2:32 pm
... [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...
6145
Andrew Berry
goolies_tg
May 1, 2008 2:17 pm
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...
6144
killgore9999
May 1, 2008 2:17 pm
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 ...
6143
Lev Lvovsky
levl289
Apr 28, 2008 11:54 pm
After running a few tests, I'm finding that the operations performed by the SOAP::Lite decode() method (actually in the SOAP::Parser package) are causing huge...
6142
iconmans
Apr 26, 2008 12:28 pm
Check out http://www.savitriya.com/ . These guys are really doing a great job! Best, Raj...
6141
rahed
raherh
Apr 23, 2008 2:05 pm
... Do you want this? $var = SOAP::Data->name('name1' => 'myvalue139;)->attr( { attr1 => 'myvalue239; } }; -- Radek...
6140
winfinit
Apr 22, 2008 7:48 pm
hello, i am trying to create structure like this <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:CommunityReserveTicket> ...
6139
sylvain.brohee
Apr 22, 2008 4:30 pm
Dear all, Recently, we developed a set of tool dedicated to the study of biological networks (NeAT : http://rsat.scmbb.ulb.ac.be/neat/). These tools are...
6138
winfinit
Apr 22, 2008 4:30 pm
Hello, how can i put together this call? <method href="blah"/> so essentially i need i guess something like ->type but that allows me to create my custom...
6137
Andrei Ivanov
ensen_andy
Apr 17, 2008 1:35 am
I found there is a new update of SOAP::Lite 0.71.01 What exactly I see in log files erlier: SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal ...
6136
Andrei Ivanov
ensen_andy
Apr 16, 2008 2:58 pm
... It looks like error 500 generated in line 428 in HTTP.pm which caused by LWP module (with error "empty headers") ... -- Best regards, Andrei Ivanov phone...
6135
Paul Rogers
progers001
Apr 16, 2008 2:58 pm
This could explain why I've also been having problems with 0.71. While I admit I'm new to soap::lite (and thus a bit green to its intricacies), I've been...
6134
Andrei Ivanov
ensen_andy
Apr 16, 2008 5:19 am
It simply does not works (may be problem in LWP->HTTP.pm), it works fine with SOAP::Lite 0.70 version. I added message in bugs report with some details. If...
6133
Mike
mw487
Apr 12, 2008 3:21 pm
I notice that the OpenPatentService client at http://tech.groups.yahoo.com/group/soaplite/message/6012 no longer works. Here is a new version, using the stub...
6132
Vivek Mhatre
vmhatre
Apr 12, 2008 3:21 pm
Hi, I am new to SOAP lite. I hope someone can help me out.. I am trying to send XML data in the following form. <batch> <SOAP-ENV:Envelope> <SOAP-ENV:Body> ...
6131
Paul Rogers
progers001
Apr 12, 2008 3:20 pm
... CGI. It can....IIS6...I enabled it in the "web extensions" section of IIS manager. ... test.pl. Simple CGIs/.pl scripts work no problem. ... This works....
6130
Paul Rogers
progers001
Apr 11, 2008 2:33 pm
Hi, I'm trying to do some work creating a web service using SOAP::Lite but I'm not getting far. A call through the browser to 'client.pl' shows a blank web...
6129
Sergey Romanovsky
sergeyromano...
Apr 9, 2008 6:17 pm
Hi, I need to throw an error which should be caught by a .NET client of SOAP::Lite webservice. Serialized SOAP::Fault produces xml which isn't compatible with...
6128
Patrick
w8itout
Apr 2, 2008 2:47 pm
I decided to return xml from the soap call, and then used XPath directly - seemed the prudent thing to do...