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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 6184 - 6213 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6184
I have a method (get_fees) for the Web service returning the 'fees' XML and I'm able to do that by simply populating my_variable with the XML and returning...
qglex
Offline Send Email
Aug 6, 2008
5:20 pm
6185
I'm using XML::XPath to access the element and attribute values - works out well - pat example $result = $soap ->readable(1)->outputxml(1) ->proxy('http://',...
pat.mariani@...
w8itout
Offline Send Email
Aug 6, 2008
8:55 pm
6186
A simple question, but I can't find the answer on www.soaplite.com I have a SOAP method that returns multiple results: sub Foo { my $Self = shift; my...
John Gateley
jfootiger
Offline Send Email
Aug 7, 2008
7:17 pm
6187
Hi, I have a soap serializer (server) that usually returns strings for most requests. However, for one request, it returns an array of strings. In the past, I...
Edward Kawas
kawas7
Offline Send Email
Aug 8, 2008
4:24 pm
6188
Hi I am making SOAP requests in the following way (have had to remove real urls so not runnable as is but hopefully it makes enough sense): ###### package...
Mark Knoop
marknoop2002
Offline Send Email
Aug 14, 2008
3:53 pm
6189
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy('http://', timeout => 1) ...
patrick mariani
w8itout
Offline Send Email
Aug 14, 2008
6:30 pm
6190
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy('http://', timeout => 1) ...
Mark Knoop
marknoop2002
Offline Send Email
Aug 14, 2008
8:45 pm
6191
Hi Everyone, I built a module with stubmaker.pl to connect to a web service which generated two parameters <code snippet of the two parameters> parameters => [...
cracknphrack
Offline Send Email
Aug 17, 2008
10:01 pm
6192
My apologies if this has been explained before. I have set up a simple Soap server, and it is working as expected. However i do have one question, When adding...
bnyec
Offline Send Email
Aug 19, 2008
8:44 pm
6193
This is because mod_perl keeps the code in memory (and as such, doesn't necessarily reload it when the code changes) - however you shouldn't need to stop and...
Chris Woodfield
cwoodfieldatl
Offline Send Email
Aug 19, 2008
8:53 pm
6194
Hello, I'm new to SOAP::Lite and I'm having what's probably a silly error on my part, but I haven't been able to find anything related in the archives here or...
ErikTheRed
er1kthered
Offline Send Email
Aug 20, 2008
3:58 pm
6195
... Do it this way: $CallCredentials = SOAP::Data ->name(credentials => \SOAP::Data->value( SOAP::Data->name(Username => $UserName)->type('string'), ...
rahed
raherh
Offline Send Email
Aug 20, 2008
7:58 pm
6196
... From: rahed <raherh@...> Subject: Re: [soaplite] Serialization problems: To: Date: Wednesday, August 20, 2008, 12:58 PM ... Do it this way: ...
ErikTheRed
er1kthered
Offline Send Email
Aug 20, 2008
10:39 pm
6197
It''s been a while since I played with stubmaker.pl but if I remember correctly it's abilities are slim. I remember having to modify the generated Perl...
Eric Bridger
ebridger2004
Offline Send Email
Aug 21, 2008
2:08 am
6198
... Will you send the whole request/response? -- Radek...
rahed
raherh
Offline Send Email
Aug 22, 2008
2:24 pm
6199
Hi I'm sure I have read something about this but now I can't find it. Take the following example: ####################### use strict; use...
Mark Knoop
marknoop2002
Offline Send Email
Aug 22, 2008
4:12 pm
6200
... Here's the complete transaction: SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x12b16e0) SOAP::Transport::HTTP::Client::send_receive:...
ErikTheRed
er1kthered
Offline Send Email
Aug 22, 2008
4:13 pm
6201
Sorry if this is too obvious and I'm just taking a guess. Perl know nothing about 'true' and 'false'. Both are true as opposed to '' or 0. Try value => '' or...
Eric Bridger
ebridger2004
Offline Send Email
Aug 22, 2008
4:18 pm
6202
Apache/2.2.4 mod_perl/2.0.3 Perl/v5.8.8 SOAP-Lite-0.710.08 Ive noticed that sometimes my soap requests will fail every 6th request which is the same number of...
bnyec
Offline Send Email
Aug 22, 2008
8:15 pm
6203
It is a max_client setting in the server. You should receive an error message about server busy (maybe?) p ... From: bnyec To: soaplite@yahoogroups.com Sent:...
patrick mariani
w8itout
Offline Send Email
Aug 22, 2008
9:02 pm
6204
... Fault string says you send a wrong envelope namespace. It should be xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" If there are problems I wouldn't...
rahed
raherh
Offline Send Email
Aug 24, 2008
12:59 pm
6205
I am using SOAP::WSDL (what I heard is a pre processor to the SOAP::Lite that runs underneath). Started with the usual wsdl2perl generated files (very handy,...
cracknphrack
Offline Send Email
Aug 25, 2008
4:34 am
6206
... I'm only familiar with SOAP::Lite where you can also change the envprefix with adding this line: $SOAP::Constants::PREFIX_ENV = 'soap'; ... It'd always be...
rahed
raherh
Offline Send Email
Aug 25, 2008
1:52 pm
6207
Thanks for your reply, Eric. I certainly have not ruled out the likelihood I am missing something obvious! What I am trying to understand is the logic of how...
Mark Knoop
marknoop2002
Offline Send Email
Aug 26, 2008
3:20 am
6208
I had the same issue with the SOAP-ENV prefix - here is the answer. http://tech.groups.yahoo.com/group/soaplite/message/6124 p. ... From: cracknphrack To:...
patrick mariani
w8itout
Offline Send Email
Aug 26, 2008
3:21 am
6209
Hi I am trying to get proof of concept SOAP server working but after I introduced an WSDL file I get the fault: ...
Mark Knoop
marknoop2002
Offline Send Email
Aug 26, 2008
3:21 am
6210
Nope, time is not a factor. waited a few mins before making 6th request.   Discovered where the problem is, If i add a new package/pm and make my requests to...
b. nyec
bnyec
Offline Send Email
Aug 26, 2008
3:22 am
6211
... Have a look at JMeter at http://jakarta.apache.org/jmeter/ -- Radek...
rahed
raherh
Offline Send Email
Aug 27, 2008
12:41 pm
6212
Hi. One of our supplies updated their .net soap interface and our existing SOAP::Lite code is now failing. We're using a wsdl specification, so all we've...
maurice_aubrey
Offline Send Email
Aug 28, 2008
1:35 pm
6213
... You can first register the namespace/prefix: $soap->serializer->register_ns('uri'=>'xmlns:tns'); and then call each object: ...
rahed
raherh
Offline Send Email
Aug 28, 2008
6:48 pm
Messages 6184 - 6213 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