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...
2539
iluvperlalot
Apr 22, 2003 9:19 pm
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...
2540
Byrne Reese
byrnereese
Apr 22, 2003 9:25 pm
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...
2541
mkovalchuk
Apr 22, 2003 9:35 pm
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...
2542
mattgermonprez
Apr 22, 2003 10:07 pm
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...
2543
Rich
krush_groover
Apr 22, 2003 11:09 pm
How do I replace the namespace (namesp1) in the method call with something simpler, like "ns"? Here's the perl I'm using: my $results =...
2544
Byrne Reese
byrnereese
Apr 23, 2003 12:14 am
Try this: my $method = SOAP::Data->name("getAllPendingDocumentInfo) ->uri("ns"); my $results = $soap->call($method => SOAP::Data ->name("merchant") ...
2545
Sadanand Kalasabail
sade_bhat
Apr 23, 2003 12:48 am
Add a type in the data. my $param = SOAP::Data ->name(39;x' => 25)->type('xsi:string'); or if its number define it accordingly. ... ...
2546
Michael Grinnell
mg8981b
Apr 23, 2003 2:08 am
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...
2547
Rich
krush_groover
Apr 23, 2003 12:50 pm
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...
2548
Michael Kovalchuk
mkovalchuk
Apr 23, 2003 1:05 pm
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...
2549
Michael Grinnell
mg8981b
Apr 24, 2003 2:29 pm
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...
2551
Michael Grinnell
mg8981b
Apr 24, 2003 10:43 pm
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...
2552
Alan D. Salewski
ads0138
Apr 25, 2003 12:51 pm
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...
2553
Alan D. Salewski
ads0138
Apr 26, 2003 4:58 pm
[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...
2554
Rich
krush_groover
Apr 28, 2003 8:00 pm
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...
2556
Torsten Mangner
tmangner
Apr 29, 2003 11:32 am
Hi Folks, i have to send input arguments for a soap-function in the following structure: <customers> <customer> <no>1001</no> </customer> <customer> ...
2557
Alan D. Salewski
ads0138
Apr 29, 2003 12:14 pm
... 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...
2559
Torsten Mangner
tmangner
Apr 29, 2003 1:36 pm
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...
2560
Torsten Mangner
tmangner
Apr 29, 2003 3:18 pm
Hi Folks, i need a xml-structure like this: <catalog xmlns:catalog="urn:catalog" xmlns:customer="urn:customer"> <catalogid...
2561
Byrne Reese
byrnereese
Apr 29, 2003 4:47 pm
Without seeing the WSDL it is difficult to say. But I would venture to guess that the WSDL file does not specify a port in the <service> element. But that is...
2562
Byrne Reese
byrnereese
Apr 29, 2003 5:08 pm
The following answer is also posted on the SOAP::Lite solutions-blog-thing-a-ma-jig: http://www.majordojo.com/archives/2003_04.html#000011 ...
2563
Byrne Reese
byrnereese
Apr 29, 2003 8:01 pm
One thing I find myself constantly doing with my SOAP::Lite clients is commenting in and out the "+trace => 'debug39;" from the "use SOAP::Lite" call so that I...
2564
Randy J. Ray
rjray_perl
Apr 29, 2003 9:08 pm
... use SOAP::Lite; use Getopt::Long; my $result = GetOptions ("debug" => \$DEBUG); # No 'my' for $DEBUG? :-) $DEBUG && SOAP::Lite->import(trace => debug); ...
2565
Byrne Reese
byrnereese
Apr 30, 2003 4:14 pm
Last week I showed how to override the root element of a request, but did not show a way to do the same thing for the root element of a response. So, read on...
2566
Trevor Leffler
tleffler711
Apr 30, 2003 8:05 pm
Hello all, I've got a SOAP::Lite "server" (just a CGI, really) that lives in a directory that--via some Apache directives--forces client SSL connections and...
2567
Pablo Averbuj
paverbuj
May 1, 2003 3:31 am
... I'm not an expert, so it's quite likely I'm wrong, but it sounds like this isn't particular to SOAP::Lite at all. It seems like apache creates a bunch of...