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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 1237 - 1266 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1237 John Powell
johnp3d Send Email
Feb 13, 2002
2:14 pm
Byrne&Will, Thank you - this article really helps!! I wonder if you could go one step further and imagine that the getMetric example could handle a list of...
1238 William McCracken
usiwill Send Email
Feb 13, 2002
4:16 pm
John, Here is what I'm working on right now. This might help you: The envelope: <SOAP-ENV:Body> <namesp1:insert...
1239 pmcevoy_ie Send Email Feb 13, 2002
4:25 pm
Hi guys, New to SOAP and SOAP::Lite so please be gentle.. I have a Java web service that I am trying to get my simple SOAP::Lite client to connect to., however...
1240 John Powell
johnp3d Send Email
Feb 14, 2002
6:24 pm
Will, Its starting to look a little too easy, but yes those parens can be tricky. My next step is making this work with an arbitrary size array (ie number of ...
1241 John Powell
johnp3d Send Email
Feb 18, 2002
4:22 pm
All, With some help from Will (Thanks Will!), I have figured out what I need; maybe there's a more elegant way to do this, but the following allows me to ...
1242 dearshoash Send Email Feb 19, 2002
2:24 pm
hi all, i m using SOAP first time in my application in exposing my COM object. but i m not getting how to invoke WSDL file on SSL using highlevel APIs(MS-SOAP...
1243 v_pareto Send Email Feb 19, 2002
11:49 pm
The SOAP::Lite User Guide gives an example of how to receive an array at the client-side, but I want to know how to return an array at the server-side. The...
1244 Daryl Williams
daryl@... Send Email
Feb 20, 2002
3:54 pm
hello everybody, i am new to this list and new to soap in general. if this is not the correct list for my question, i apologize in advance. rtfms are welcomed...
1245 Duncan Cameron
dcameron@... Send Email
Feb 20, 2002
7:41 pm
... Try the equally "obvious" return \@x; ... Strictly speaking, Perl doesn't have two-dimensional arrays, rather an array whose elements are each a reference...
1246 Daryl Williams
daryl@... Send Email
Feb 21, 2002
3:43 pm
folks, i am reposting this as it appears to have been lost on delivery. my apologies if you have received more than one... hello everybody, i am new to this...
1247 Duncan Cameron
dcameron@... Send Email
Feb 21, 2002
8:45 pm
... No, it wasn't lost. Just that nobody responded! ... The problem isn't with SOAP::Lite but with one of the prerequisite packages, probably Crypt::SSLeay. I...
1248 Daryl Williams
daryl@... Send Email
Feb 22, 2002
4:03 am
hi duncan, thanks for your reply.i should have checked the cpan output closer. i have gotten past the issue with openssl and am now having fun with a compile...
1249 McEvoy, Peter
pmcevoy_ie Send Email
Feb 22, 2002
10:53 am
Hi guys, I'm just sending a repost to this problem, as I got no feedback. I certainly think this is an option in SOAP::Lite, as the soaplite.com page says...
1250 Duncan Cameron
dcameron@... Send Email
Feb 22, 2002
7:53 pm
... The following might do what you want: my $soap = SOAP::Lite ->proxy("http://$server:$port/$endpoint&quot;) ->uri($urn); ...
1251 v_pareto Send Email Feb 26, 2002
6:27 am
When my SOAP::Lite client feeds an array to a SOAP::Transport::HTTP server, I get an off-by-one error. That is to say, the following code on the client @a =...
1252 Duncan Cameron
dcameron@... Send Email
Feb 26, 2002
7:21 am
... "What&#39;s going on" is that you've not looked at any of the examples. The first parameter o th method is the class/object reference. See the SOAP::Lite pod...
1253 Sam Tregar
samtregar Send Email
Feb 26, 2002
8:03 am
... SOAP calls are class method calls. The first parameter is the name of the class where foo is defined. Add: my $pkg = shift; above the line where you load...
1254 Duncan Cameron
dcameron@... Send Email
Feb 26, 2002
7:35 pm
... Not sure what you are looking at. This code: my @array1 = ('z','x&#39;, 'c', 'v'); my $r = $s->test1(@array1); generates XML like this: <namesp1:test1...
1255 Ajit Deshpande
ajit_d Send Email
Feb 27, 2002
12:02 am
Hello: I need to create multipart/related response using SOAP::Lite. I browsed the archives and it seems that SOAP::Lite doesn't help with that. The last...
1256 Tom Mornini
tmornini Send Email
Feb 27, 2002
3:56 am
Hello all! We're getting near deploying our first SOAP based service, and I'm beginning to think that perhaps we can't get there from here... :-) We have some...
1257 Duncan Cameron
dcameron@... Send Email
Feb 27, 2002
7:29 am
... You might find that explicitly setting the schema will help $s->xmlschema('2001&#39;); Not sure how it operates with the SOAP version though. Duncan Cameron...
1258 Tom Mornini
tmornini Send Email
Feb 27, 2002
7:48 am
... Thank you! That worked perfectly. Here's what I found: my $s = SOAP::Lite->new( soapversion => 1.2, xmlschema => '2001', uri =>...
1259 William McCracken
usiwill Send Email
Feb 27, 2002
5:09 pm
Has anyone seen any issues running system calls from their SOAP::Lite server modules? It appears that the calls are being executed on the client through the ...
1260 Paul Kulchenko
paulclinger Send Email
Feb 27, 2002
9:41 pm
Hi, Tom! ... Just to clarify the situation (and sorry for my long absence from the list; I was traveling for two weeks with occasional access to my email. btw,...
1261 mrdamnfrenchy Send Email Feb 27, 2002
11:17 pm
I just tried sending XML containing CDATA using SOAP::Lite. It gets encoded like this: <item xsi:type="xsd:string"><?xml version="1.0"?> ...
1262 Paul Kulchenko
paulclinger Send Email
Feb 28, 2002
2:32 am
... That's correct. It was fixed in v0.52. Thanks. Best wishes, Paul. ... __________________________________________________ Do You Yahoo!? Yahoo! Greetings -...
1263 Mathieu Longtin
mrdamnfrenchy Send Email
Feb 28, 2002
2:57 am
I noticed about fifteen minutes ago. Terribly sorry about that. Moral of the story: keep your libraries up to date. -Mathieu ... ...
1264 Tom Mornini
tmornini Send Email
Feb 28, 2002
3:36 am
... Hope you had a good trip! ... That makes sense! ... OK. That's interesting and useful information. Thank you very much for your time. -- -- Tom Mornini --...
1265 Tom Mornini
tmornini Send Email
Feb 28, 2002
3:47 am
Now that the list has helped me solve the 1999/2001 schema issue, WSDL is suddenly important. One of our developers has been working on demo code for MS using ...
1266 nickzao74 Send Email Feb 28, 2002
9:34 am
Hi, we have written service in MS.NET and tried to use it with SOAP::Lite client. Functions without arguments work perfectly. But by a call of function with...
Messages 1237 - 1266 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