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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 5638 - 5688 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
5638 david_ster Send Email Sep 30, 2006
5:54 pm
I developed a client server application. Now I use a fixed endpoint to the cgi, but I need to switch to a load balancer, in order to address the call to the...
5639 Thomas Eden
teden Send Email
Sep 30, 2006
11:42 pm
It depends on the load balancer you are using. I use a software solution - balance, from those geniuses in Germany (http://www.inlab.de/balance.html). I am...
5641 crndeignan Send Email Oct 3, 2006
12:01 pm
Hi All, I'm sure I saw this in the documentation, but now I can't find it any more. I'm trying to connect to a web service built with JAX (apparently). I've...
5643 Eric Bridger
ebridger2004 Send Email
Oct 3, 2006
12:45 pm
I believe you can use the on_action() method. Eg. I used this to remove the SOAPAction header, but it could be used to override the default. $client =...
5644 crndeignan Send Email Oct 3, 2006
12:58 pm
... I've already defined an on_action() subroutine to remove the "#" between the URI and the method. But I need to keep the SoapAction header, otherwise the...
5645 bstrathearn Send Email Oct 3, 2006
7:17 pm
I'm using SOAP::Lite 0.69 CPAN and am trying to implement a client for a service WSDL published here: http://strathearns.org/wds/usps_ws.wsdl While generating...
5646 Scott Wiersdorf
swiersdorf Send Email
Oct 4, 2006
5:28 pm
... You might try this patch to Lite.pm: <snip> ... +++ SOAP-Lite-0.69-patched3/lib/SOAP/Lite.pm 2006-08-28 09:19:27.000000000 -0600 @@ -3040,7 +3040,7 @@ ...
5647 bstrathearn Send Email Oct 4, 2006
9:08 pm
Thanks for the timley response. Got the same error after patching, so I'll await the full release update or revert back to 0.60 which some others seem to have...
5648 bstrathearn Send Email Oct 5, 2006
12:16 am
Sadly, all versions after 0.60 had the same problem. Tried 0.60 and ... <SOAP-ENV:Body> <batch_lookup xmlns=""> <batch_lookup>;thejidprefix<;/batch_lookup&gt; ...
5651 Cas Roman
caszroman Send Email
Oct 7, 2006
2:40 pm
Who Wants To Be A Stock Market Millionaire? I know many people who want to be stock market millionaires. It is actually not that complex if you know what you...
5652 Sebastian Jaenicke
sjaenick+SOAPLITE@... Send Email
Oct 10, 2006
2:25 am
On Wed, Oct 04, 2006 at 10:47:35AM -0600, Scott Wiersdorf wrote: [..] ... Your patch has just helped me to resolve a situation where the first parameter...
5653 Sebastian Jaenicke
sjaenick+SOAPLITE@... Send Email
Oct 10, 2006
2:50 am
On Tue, Oct 10, 2006 at 04:25:15AM +0200, Sebastian Jaenicke wrote: [..] ... Somehow the message doesn't seem to match what the WSDL file says: <operation...
5658 Steve Benzo
steve_benzo Send Email
Oct 11, 2006
3:24 pm
Hi, I'm having a problem parsing some XML in PERL with SOAP::LITE and was wondering if anyone could help me out. I'm trying to get access to the each of the...
5659 Sebastian Jaenicke
sjaenick+SOAPLITE@... Send Email
Oct 11, 2006
9:09 pm
Hi, doesn't actually look like valid XML to me. On Wed, Oct 11, 2006 at 08:17:46AM -0700, Steve Benzo wrote: [..] ... ^^^^^^^^^^^ No opening '<metadata&gt;' tags...
5660 Steve Benzo
steve_benzo Send Email
Oct 11, 2006
9:22 pm
The XML I'm working with is correct, I must have just mis-copied. Anyway, here's a snippet of the XML I'm having trouble parsing. Again, I'm trying to get...
5662 Rohitashva Sharma
rs1975in Send Email
Oct 12, 2006
4:35 pm
Dear All, I am writing a web service based application where I need to send three associative arrays (hashes) from SOAP-Lite based client to SOAP-Lite based...
5663 Sebastian Jaenicke
sjaenick+SOAPLITE@... Send Email
Oct 12, 2006
5:10 pm
On Thu, Oct 12, 2006 at 06:30:27PM +0200, Rohitashva Sharma wrote: [..] ... How does the server side expect the data? ... ->remote_method( %hash1, %hash2,...
5664 Rohitashva Sharma
rs1975in Send Email
Oct 12, 2006
6:10 pm
Hi Sebastian, Thanks for your reply.. At server side I want these three hashes back in the same way i have at client. I am trying out your suggestions. thanks...
5665 Rohitashva Sharma
rs1975in Send Email
Oct 12, 2006
7:12 pm
Hi Sebastian, I tried the suggestion given by you. Here is the part of code CLIENT SIDE: use SOAP::Lite; my $x = shift; my $soap_handle; my %hash1 = ( "Rohit"...
5666 Sebastian Jaenicke
sjaenick+SOAPLITE@... Send Email
Oct 12, 2006
7:50 pm
On Thu, Oct 12, 2006 at 09:04:52PM +0200, Rohitashva Sharma wrote: [..] ... [..] ... Use ->handle_hash(\%hash); # note the '\&#39; here, which results in ...
5670 Rohitashva Sharma
rs1975in Send Email
Oct 13, 2006
8:57 am
Hi Sebastian, Thanks a lot... regards Sharma On 10/12/06, Sebastian Jaenicke...
5672 Frank McCown
mccownf Send Email
Oct 15, 2006
12:42 am
Could someone tell me how I can see the SOAP response message when using SOAP Lite and the Google Web Search API? For example, after calling doGoogleSearch(),...
5674 Frank McCown
mccownf Send Email
Oct 16, 2006
1:10 pm
... <snip> The example Google Web API code that comes with SOAP::Lite at http://search.cpan.org/src/BYRNE/SOAP-Lite-0.69/examples/google.pl is no longer...
5675 Eric Bridger
ebridger2004 Send Email
Oct 16, 2006
3:31 pm
I use something like: print $google->transport->http_response->content() . "\n";...
5676 Frank McCown
mccownf Send Email
Oct 16, 2006
4:16 pm
Thanks, Eric. I also found the following to work: print $google->{_transport}->{_proxy}->{_http_response}->{_content}; Frank ... -- Frank McCown Old Dominion...
5677 Jakob Hirsch
mirakulator Send Email
Oct 17, 2006
1:20 pm
Hi, I have a SOAP server with SOAP::Lite, using SOAP::Transport::HTTP::CGI with Apache 1.3.33. Is it possible to access the http headers of the request? I...
5683 emsivajo Send Email Oct 29, 2006
4:18 pm
Hi, I'm new to Web Services and I'm trying hard to create a client script for consuming a Web Service created on .NET platform. I've been struggling in days...
5685 Judd Taylor
judd.taylor Send Email
Oct 30, 2006
10:46 pm
I've got an OO Perl API for some things I'd like to be able to control over the internet. Lots of our customers use Java, and would like a SOAP interface. Will...
5687 Günter Sammet
guntersammet Send Email
Nov 1, 2006
12:46 am
Hello all: Been spinning my wheels on this issue for quite a while but haven't found a solution yet. We have a SOAP service that works on one machine (same IIS...
5688 Ver Lingas
verlingas Send Email
Nov 1, 2006
5:54 am
How To Succeed In Online Financial Trading Using Freebies Did you know that many of the tools and resources that we consider essential for online trading...
Messages 5638 - 5688 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