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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 6099 - 6128 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6099
Hello, i have the following problem: I built the stubcode of the Amazon web services via "stubmaker.pl http://soap.amazon.com/schemas2/AmazonWebServices.wsdl"....
Peter Hartmann
huberhans90
Offline Send Email
Feb 1, 2008
9:03 pm
6100
Hello, i have the following problem: I built the stubcode of the Amazon web services via "stubmaker.pl http://soap.amazon.com/schemas2/AmazonWebServices.wsdl"....
huberhans90
Offline Send Email
Feb 1, 2008
9:04 pm
6101
I would not use stubmaker.pl since you are doing all the work yourself it doesn't really give you anything. The altermative (which I did once long ago) is to...
Eric Bridger
ebridger2004
Offline Send Email
Feb 1, 2008
10:05 pm
6102
I'm pretty sure stubmaker.pl can't handle complex types. To pass a complex type, you'll actually have to pass your array as the complex type name required by...
Craig Dunigan
craigdunigan62
Offline Send Email
Feb 4, 2008
3:44 pm
6103
How can I serialize complex types in soap lite (using wsdl). The message should look like this. (The Wsdl has defined types such as Metrics.) <message> ...
rvanveen_nl
Offline Send Email
Feb 4, 2008
6:51 pm
6104
Hello, I am using SOAP::Data to build a request to a SOAP server. I send ir with SOAP::Lite, generating this request XML: <?xml version="1.0"...
Paco Regodón
francisco@...
Send Email
Feb 4, 2008
11:31 pm
6105
Client side: my @d; $i = 0; while (<STDIN>) { chomp; @d[$i] = SOAP::Data->name('appointment')->type('appointment')->value( [ ...
Andrei Ivanov
ensen_andy
Offline Send Email
Feb 5, 2008
6:33 am
6106
Dear Friends Greetings from Gomathi - Job Cookies, I represent one of the leading IT consultancies called Job Cookies. Job Cookies is a dynamic and...
Gomathi Muthiah
jobcookies2
Offline Send Email
Feb 5, 2008
6:34 am
6107
... Ok, thanks for clearing this up. For those of you who want to pass complex types to a web service without dealing with the correct namespaces etc. by hand,...
Peter Hartmann
huberhans90
Offline Send Email
Feb 5, 2008
3:34 pm
6108
Brand new SOAP::Lite user here. I am trying to get the hibye demo working locally on my laptop running Ubuntu Ultimate 7.10. The hibye.pl script works when...
jwalsh999
Offline Send Email
Feb 9, 2008
7:18 am
6109
I have a SOAP server that runs in daemon mode and am able to talk to it fine with a client (SOAP object) built using the uri + proxy methods, but I cannot get...
axelelfner
Offline Send Email
Feb 11, 2008
4:35 am
6110
Hi, how can I get access to the SOAP::Data structure with brackets [] I have an array of items such: <namesp1:findrecResponse xmlns:namesp1="meetup"> <result...
Andrei Ivanov
ensen_andy
Offline Send Email
Feb 11, 2008
3:25 pm
6111
Hi, I have a SOAP client call within an Apache module which is giving me an error, however when I use the same code from the command line I can easily get the...
occasoblu
Offline Send Email
Feb 14, 2008
6:22 am
6112
hello, how do i change the way my envelope looks, in fact i want to define myself how it will look, currently it is similar to this <?xml version="1.0"...
winfinit
Offline Send Email
Feb 19, 2008
8:19 pm
6113
Hi, How can I obtain a xml output like this: <soap:Body> <OTA_HotelDescriptiveInfoRQ xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="123456" ...
Luis
luissanchez
Offline Send Email
Feb 21, 2008
2:06 am
6114
In soap::lite perl service, the get_srvorder_details method returns the following complex structure: sub get_srvorder_details{ my @srv = (...
t_elia
Offline Send Email
Feb 26, 2008
4:07 pm
6115
Hello, I'm a newbie to SOAP and working on implementing a SOAP::Lite Perl client to invoke a function "getUint64ArrayValues" on a gSOAP server. I was able to...
mharidev
Offline Send Email
Feb 27, 2008
5:30 am
6116
Hi Everyone! I am trying to SETUP CGI based web services using SOAP::LITE on WINDOWS XP (SERVICE PACK 2) having IIS 5.1. Have installed all necessary modules...
~Dushi~
dushidushy
Offline Send Email
Mar 7, 2008
9:22 pm
6117
I have the following ComplexType definitions for IP address, how do i define the data type? I have the following defined but not getting the result i wanted. ...
bennychee
Offline Send Email
Mar 10, 2008
4:36 pm
6118
hi all, Manage to get it translated. cheers. my $tclass = SOAP::Data->name("trafficClassifier" => \SOAP::Data->value( SOAP::Data->name("networkAddress" => ...
bennychee
Offline Send Email
Mar 11, 2008
4:36 pm
6119
Hi I have a script which does something like the following (this is an example for test purposes using some public service): ### use strict; use warnings; use...
Mark Knoop
marknoop2002
Offline Send Email
Mar 12, 2008
3:57 pm
6120
I am having the same problem (now four years after Mr. Sedgley). does anyone know how to remove the encodingStyle attribute from the envelope or an alternative...
Brian
pheighus
Offline Send Email
Mar 28, 2008
3:34 pm
6121
Hello Brian, ... my $obj = SOAP::Lite->service('http://<url>.wsdl'); $obj->encodingStyle(''); my $result = ... ... Peter I am not sure but I think the...
Peter Hartmann
huberhans90
Offline Send Email
Mar 28, 2008
4:55 pm
6122
Hi All - My apologies for a huge post, esp 1st time out - i've been using SOAP::Lite for a year, and have been able to figure things out, but.....oh, please...
Patrick
w8itout
Offline Send Email
Mar 28, 2008
9:30 pm
6123
Hi Patrick, this is due to an error in SOAP::Lite's namespace handling - it uses soap: as envelope prefix and does not recognize it is already taken. The...
Martin Kutter
kutterma
Offline Send Email
Mar 28, 2008
10:59 pm
6124
Vielen Danke! Worked w/o a hitch..... Pat For Completeness - here it is <SOAP-ENV:Envelope xmlns:tns2="http://data2.integration.yellowpages.com" ...
patrick mariani
w8itout
Offline Send Email
Mar 29, 2008
9:58 am
6125
Hi all, I'm using SOAP::Lite for years to integrate a perl Search Engine through Web Service into other environments (Java, COM, etc.). The server is resides...
Hugues de Mazancourt
hdemazancourt
Offline Send Email
Mar 31, 2008
7:17 am
6126
OK - I've now been whipped twice in three days. Seems the server i'm accessing doesn't like to use XML for its real power - it returns an array whose...
Patrick
w8itout
Offline Send Email
Mar 31, 2008
5:13 pm
6127
I am just starting using SOAP::Lite and I am having a bit of a problem getting anything to work. I have a very simple perl file (below) ... ...
bshenanigan
Offline Send Email
Apr 1, 2008
8:03 pm
6128
I decided to return xml from the soap call, and then used XPath directly - seemed the prudent thing to do...
Patrick
w8itout
Offline Send Email
Apr 2, 2008
2:47 pm
Messages 6099 - 6128 of 6387   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