Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

soaplite · SOAP::Lite for Perl (soaplite.com)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1205
  • Category: Protocols
  • Founded: Jan 28, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 2538 - 2567 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2538 Byrne Reese
byrnereese Send Email
Apr 22, 2003
9:01 pm
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 Send Email 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::Lite&#39;s WSDL/XML Schema...
2540 Byrne Reese
byrnereese Send Email
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 Send Email 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 Send Email 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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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@... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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@... Send Email
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 Send Email
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 Send Email
Apr 29, 2003
12:14 pm
... Hi Torsten, You could try something like the following: my $arg = SOAP::Data->name('customers&#39;) ->value([SOAP::Data->name('customer&#39;) ...
2558 Andre Bonhote
andre@... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 => 'debug&#39;" from the "use SOAP::Lite" call so that I...
2564 Randy J. Ray
rjray_perl Send Email
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 Send Email
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 Send Email
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 Send Email
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...
Messages 2538 - 2567 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help