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 2529 - 2559 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2529 RRosenkranz@...
rolandrosenk... Send Email
Apr 16, 2003
1:55 pm
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:...
2530 Byrne Reese
byrnereese Send Email
Apr 16, 2003
4:56 pm
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...
2531 Sadanand Kalasabail
sade_bhat Send Email
Apr 17, 2003
1:12 am
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...
2532 Quinn Weaver
quinn_weaver Send Email
Apr 17, 2003
5:04 am
... 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 ...
2533 tl082 Send Email Apr 18, 2003
8:22 pm
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: ...
2534 fsdev2001 Send Email Apr 20, 2003
11:40 am
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 ...
2535 Rich
krush_groover Send Email
Apr 21, 2003
10:19 pm
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...
2537 Byrne Reese
byrnereese Send Email
Apr 22, 2003
5:58 pm
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...
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...
Messages 2529 - 2559 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