Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5641 - 5690 of 6386   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5641
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...
crndeignan
Offline Send Email
Oct 3, 2006
12:01 pm
5643
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 =...
Eric Bridger
ebridger2004
Offline Send Email
Oct 3, 2006
12:45 pm
5644
... 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...
crndeignan
Offline Send Email
Oct 3, 2006
12:58 pm
5645
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...
bstrathearn
Offline Send Email
Oct 3, 2006
7:17 pm
5646
... 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 @@ ...
Scott Wiersdorf
swiersdorf
Offline Send Email
Oct 4, 2006
5:28 pm
5647
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...
bstrathearn
Offline Send Email
Oct 4, 2006
9:08 pm
5648
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> ...
bstrathearn
Offline Send Email
Oct 5, 2006
12:16 am
5651
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...
Cas Roman
caszroman
Offline Send Email
Oct 7, 2006
2:40 pm
5652
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...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Send Email
Oct 10, 2006
2:25 am
5653
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...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Send Email
Oct 10, 2006
2:50 am
5658
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...
Steve Benzo
steve_benzo
Offline Send Email
Oct 11, 2006
3:24 pm
5659
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>' tags...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Send Email
Oct 11, 2006
9:09 pm
5660
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...
Steve Benzo
steve_benzo
Offline Send Email
Oct 11, 2006
9:22 pm
5662
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...
Rohitashva Sharma
rs1975in
Offline Send Email
Oct 12, 2006
4:35 pm
5663
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,...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Send Email
Oct 12, 2006
5:10 pm
5664
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...
Rohitashva Sharma
rs1975in
Offline Send Email
Oct 12, 2006
6:10 pm
5665
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"...
Rohitashva Sharma
rs1975in
Offline Send Email
Oct 12, 2006
7:12 pm
5666
On Thu, Oct 12, 2006 at 09:04:52PM +0200, Rohitashva Sharma wrote: [..] ... [..] ... Use ->handle_hash(\%hash); # note the '\' here, which results in ...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Send Email
Oct 12, 2006
7:50 pm
5670
Hi Sebastian, Thanks a lot... regards Sharma On 10/12/06, Sebastian Jaenicke...
Rohitashva Sharma
rs1975in
Offline Send Email
Oct 13, 2006
8:57 am
5672
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(),...
Frank McCown
mccownf
Offline Send Email
Oct 15, 2006
12:42 am
5674
... <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...
Frank McCown
mccownf
Offline Send Email
Oct 16, 2006
1:10 pm
5675
I use something like: print $google->transport->http_response->content() . "\n";...
Eric Bridger
ebridger2004
Offline Send Email
Oct 16, 2006
3:31 pm
5676
Thanks, Eric. I also found the following to work: print $google->{_transport}->{_proxy}->{_http_response}->{_content}; Frank ... -- Frank McCown Old Dominion...
Frank McCown
mccownf
Offline Send Email
Oct 16, 2006
4:16 pm
5677
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...
Jakob Hirsch
mirakulator
Offline Send Email
Oct 17, 2006
1:20 pm
5683
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...
emsivajo
Offline Send Email
Oct 29, 2006
4:18 pm
5685
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...
Judd Taylor
judd.taylor
Offline Send Email
Oct 30, 2006
10:46 pm
5687
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...
Günter Sammet
guntersammet
Online Now Send Email
Nov 1, 2006
12:46 am
5688
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...
Ver Lingas
verlingas
Offline Send Email
Nov 1, 2006
5:54 am
5689
I'm trying to call Oracle Content DB webservice by SOAP::Lite in perl. However, Oracle deploys the services into different wsdl. For example, they provide a...
wan wanju
jwan1981@...
Send Email
Nov 1, 2006
1:53 pm
5690
hi The following website contains great links to soap tutorials and resources, check them out and enjoy ! latest tcp/ip tutorials and resources are included at...
Qaisar Rafiq
qaisarafiq
Offline Send Email
Nov 1, 2006
6:43 pm
Messages 5641 - 5690 of 6386   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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