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

Messages

Advanced
Messages Help
Messages 6184 - 6213 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6184 qglex Send Email Aug 6, 2008
5:20 pm
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...
6185 pat.mariani@...
w8itout Send Email
Aug 6, 2008
8:55 pm
I'm using XML::XPath to access the element and attribute values - works out well - pat example $result = $soap ->readable(1)->outputxml(1) ->proxy(&#39;http://',...
6186 John Gateley
jfootiger Send Email
Aug 7, 2008
7:17 pm
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...
6187 Edward Kawas
kawas7 Send Email
Aug 8, 2008
4:24 pm
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...
6188 Mark Knoop
marknoop2002 Send Email
Aug 14, 2008
3:53 pm
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...
6189 patrick mariani
w8itout Send Email
Aug 14, 2008
6:30 pm
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy(&#39;http://', timeout => 1) ...
6190 Mark Knoop
marknoop2002 Send Email
Aug 14, 2008
8:45 pm
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy(&#39;http://', timeout => 1) ...
6191 cracknphrack Send Email Aug 17, 2008
10:01 pm
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 => [...
6192 bnyec Send Email Aug 19, 2008
8:44 pm
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...
6193 Chris Woodfield
cwoodfieldatl Send Email
Aug 19, 2008
8:53 pm
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...
6194 ErikTheRed
er1kthered Send Email
Aug 20, 2008
3:58 pm
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...
6195 rahed
raherh Send Email
Aug 20, 2008
7:58 pm
... Do it this way: $CallCredentials = SOAP::Data ->name(credentials => \SOAP::Data->value( SOAP::Data->name(Username => $UserName)->type('string'), ...
6196 ErikTheRed
er1kthered Send Email
Aug 20, 2008
10:39 pm
... From: rahed <raherh@...> Subject: Re: [soaplite] Serialization problems: To: Date: Wednesday, August 20, 2008, 12:58 PM ... Do it this way: ...
6197 Eric Bridger
ebridger2004 Send Email
Aug 21, 2008
2:08 am
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...
6198 rahed
raherh Send Email
Aug 22, 2008
2:24 pm
... Will you send the whole request/response? -- Radek...
6199 Mark Knoop
marknoop2002 Send Email
Aug 22, 2008
4:12 pm
Hi I'm sure I have read something about this but now I can't find it. Take the following example: ####################### use strict; use...
6200 ErikTheRed
er1kthered Send Email
Aug 22, 2008
4:13 pm
... Here's the complete transaction: SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x12b16e0) SOAP::Transport::HTTP::Client::send_receive:...
6201 Eric Bridger
ebridger2004 Send Email
Aug 22, 2008
4:18 pm
Sorry if this is too obvious and I'm just taking a guess. Perl know nothing about 'true' and 'false&#39;. Both are true as opposed to '' or 0. Try value => '' or...
6202 bnyec Send Email Aug 22, 2008
8:15 pm
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...
6203 patrick mariani
w8itout Send Email
Aug 22, 2008
9:02 pm
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:...
6204 rahed
raherh Send Email
Aug 24, 2008
12:59 pm
... 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...
6205 cracknphrack Send Email Aug 25, 2008
4:34 am
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,...
6206 rahed
raherh Send Email
Aug 25, 2008
1:52 pm
... 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...
6207 Mark Knoop
marknoop2002 Send Email
Aug 26, 2008
3:20 am
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...
6208 patrick mariani
w8itout Send Email
Aug 26, 2008
3:21 am
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:...
6209 Mark Knoop
marknoop2002 Send Email
Aug 26, 2008
3:21 am
Hi I am trying to get proof of concept SOAP server working but after I introduced an WSDL file I get the fault: ...
6210 b. nyec
bnyec Send Email
Aug 26, 2008
3:22 am
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...
6211 rahed
raherh Send Email
Aug 27, 2008
12:41 pm
... Have a look at JMeter at http://jakarta.apache.org/jmeter/ -- Radek...
6212 maurice_aubrey Send Email Aug 28, 2008
1:35 pm
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...
6213 rahed
raherh Send Email
Aug 28, 2008
6:48 pm
... You can first register the namespace/prefix: $soap->serializer->register_ns('uri&#39;=>&#39;xmlns:tns'); and then call each object: ...
Messages 6184 - 6213 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