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 1269 - 1298 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1269 gyles19 Send Email Mar 2, 2002
1:03 am
I'm prototyping a distributed build system modeled vaguely after Mozilla's Tinderbox, but using SOAP for the message passing. I have a client/server pair which...
1270 Duncan Cameron
dcameron@... Send Email
Mar 2, 2002
9:25 am
... Unless you are running under mod_perl, there's no persistence when you run a CGI script. The web server runs your script as a separate process for each...
1271 Joi Ellis
gyles19 Send Email
Mar 2, 2002
6:10 pm
... Thanks for responding. I'm still confused, though. I've been writing CGI scripts without mod_perl for years, so I'm quite familar with the data...
1272 Paul Kulchenko
paulclinger Send Email
Mar 2, 2002
6:30 pm
Hi, Joi! ... They are not the same. you're trying to do this: use vars qw($foo); print &page(); $foo="bar";; sub page { return "Foo: $foo"; } It's not...
1273 William McCracken
usiwill Send Email
Mar 5, 2002
10:24 pm
I was wondering if anyone knows of a way to force a SOAP::Lite server to deserialize an element as a specific type. I am running into the following issue: I...
1274 rajeshchettyau Send Email Mar 6, 2002
4:29 am
Hi, I have a python soap service that I need to access. I need to send this service a header with a username and password here is the code I'm trying: use...
1275 JakeCigar Send Email Mar 6, 2002
5:27 am
How do I access <value xsi:type="ns2:Vector"> <item xsi:type="xsd:string">vector-zero</item> <item xsi:type="xsd:string">vector-one</item> <item...
1276 tmornini Send Email Mar 6, 2002
10:00 am
I'm working on a 2-way SMTP transport as per: http://www.pocketsoap.com/specs/smtpbinding/ And I just ran across a typo in SOAP::Lite. Here's the patch: ***...
1277 Duncan Cameron
dcameron@... Send Email
Mar 7, 2002
1:11 am
... Jake This is 'very frequently asked question'. The first thing to do is a search of the group's archive on Yahoo. There's a thread from last year which...
1278 tmornini Send Email Mar 7, 2002
2:50 am
Sorry to work the list so hard, but I can't find the answer in the docs, at soaplite.com or on Google. :-( The SOAP service that we're providing needs to know...
1279 JakeCigar Send Email Mar 7, 2002
3:00 am
that old thread talks about how to do it using the "valueof()" syntax that reads the XML a bit too literally! It seems that Apache Soap sends almost every...
1280 JakeCigar Send Email Mar 7, 2002
4:19 am
I see 2 cases #1 <foo> <bar>drink<;/bar> <bar>talk</bar> <bar>leave<;/bar> <foobar>something</foobar> </foo> and #2 <value xsi:type="ns2:Vector">...
1281 Paul Kulchenko
paulclinger Send Email
Mar 7, 2002
4:28 am
Hi, Duncan! ... Thanks, Duncan. You're right, 'too frequently asked' ;). So, what's the best thing to do? Deserialize it as an array? How about this: <foo> ...
1282 ekw1 Send Email Mar 8, 2002
6:31 am
When executing this SOAP call, SOAP::Lite -> uri(the_uri) -> proxy('http://username:pw@servername/proxyscript.cgi') -> function() -> result; is it possible to...
1283 tmornini Send Email Mar 8, 2002
7:58 am
Let me start this post by making it clear I'm absolutely not suggesting that anybody owes me anything! I'm perfectly aware that the answers that come from the...
1284 Sam Tregar
samtregar Send Email
Mar 8, 2002
8:28 am
... This is the best treatment of the subject I've ever seen: http://www.tuxedo.org/~esr/faqs/smart-questions.html Although it's a bit over-deterministic....
1285 Tom Mornini
tmornini Send Email
Mar 8, 2002
8:40 am
... Thanks, Sam. I was trying to politely, and with a bit of humor, get a bit of attention. I was surprised not to have received a response to some of the good...
1286 Sean.Meisner@... Send Email Mar 8, 2002
4:46 pm
Tom, For your patch and module contribution, your best bet would probably be to send a message directly to Paul. paulclinger@... Cheers, Sean ... ...
1287 Chris Davies
roaima Send Email
Mar 8, 2002
5:38 pm
Most web servers will provide the authenticated username as part of the environment variables created for a CGI script. (This includes CGI scripts handling...
1288 Duncan Cameron
dcameron@... Send Email
Mar 8, 2002
8:10 pm
... Tom I got the impression that Paul has been 'off-line&#39; recently. In the past he has been receptive to patches, so I assume that he's just not looking at...
1289 Duncan Cameron
dcameron@... Send Email
Mar 8, 2002
8:12 pm
... Rajesh If you haven't cracked this yet, can you post a trace of the SOAP envelopes? Duncan Cameron...
1290 ekw1 Send Email Mar 11, 2002
12:58 am
Can SOAP::Lite be used with mod_perl without using mod_soap? This is running under Apache 1.3.20/mod_perl 1.24/RedHat 7.2 (kernel 2.4.7). I have a perl script...
1291 Sam Tregar
samtregar Send Email
Mar 11, 2002
1:28 am
... Yes. I got a PerlHandler using SOAP::Lite running with relative ease. ... Apache::PerlRun is a bit of a monstrosity. Try with Apache::Registry or write a...
1292 Paul Kulchenko
paulclinger Send Email
Mar 11, 2002
2:09 am
Hi, ekw1! It coule also be problem with Expat and mod_perl. Take a look here: ...
1293 Paul Kulchenko
paulclinger Send Email
Mar 11, 2002
2:59 am
Hi, Duncan and Tom! ... ;) that's true. I'm sorry for that. It's on the list. Duncan is correct about 'one-man package' and 'has been off-line recently'. I ...
1294 ekw1 Send Email Mar 11, 2002
9:21 am
I have SOAP::Lite running under mod_perl successfully. Does using mod_soap improve performance further? Thanks, Eric...
1295 Paul Kulchenko
paulclinger Send Email
Mar 11, 2002
6:33 pm
Hi, ekw1! ... No. It just provides slightly different way of configuration. Best wishes, Paul. __________________________________________________ Do You...
1296 zzhongxiu Send Email Mar 12, 2002
3:54 pm
Hi! I am new to SOAPLITE. I use it to publish the perl module as web services. Below is the code: #!/usr/local/bin/perl -w use SOAP::Transport::HTTP; my...
1297 James Felix Black
jfelixbl@... Send Email
Mar 12, 2002
9:02 pm
i, As the subject line says; I'm trying to pass a Java object that contains another to and from a Perl client. The server is using The Mind Electric's GLUE...
1298 Paul Kulchenko
paulclinger Send Email
Mar 12, 2002
10:00 pm
Hi, James! ... It's possible, however XML payloads you posted don't look the same. Payload generated by SOAP::Lite has circular reference, whereas GLUE's...
Messages 1269 - 1298 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