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 159 - 188 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
159 Paul Kulchenko
paulclinger@... Send Email
Apr 2, 2001
2:43 pm
Hi, Raf! ... What kind of authentication is not implemented? SOAP::Lite gives you an access to basic/digest authentication, easy access to cookie and some...
160 Michael Percy
mpercy@... Send Email
Apr 4, 2001
5:04 am
Paul, Thank you very much for such a great SOAP library, SOAP-Lite is really fantastic. Just wanted to express that. I was wondering if you could help solve...
161 Mathieu Longtin
damnfrenchy@... Send Email
Apr 4, 2001
3:05 pm
Is there a way to send multiple requests on the same http connection? Using SOAP::Lite of course. -Mathieu...
162 Paul Kulchenko
paulclinger@... Send Email
Apr 4, 2001
3:37 pm
Hi, Michael! Actually you have a couple of choices: you may pass transport dependent parameters right after endpoint address in proxy call: my $soap =...
163 Mathieu Longtin
damnfrenchy@... Send Email
Apr 4, 2001
3:45 pm
is there a way to build SOAP::LIte with no user intervention? I need that for an install script, and it calls for minimal user input... Thanks -Mathieu...
164 Philip Molter
philip@... Send Email
Apr 4, 2001
3:49 pm
... Well, considering that SOAP::Lite uses LWP::UserAgent for its transport, probably not. I may be wrong, but I don't think LWP::UserAgent supports HTTP...
165 Paul Kulchenko
paulclinger@... Send Email
Apr 4, 2001
3:50 pm
Hi, Mathieu! ... If you redirect output somewhere (/dev/null or other file): perl Makefile.PL >/dev/null it's smart enough to take default values and create...
166 Paul Kulchenko
paulclinger@... Send Email
Apr 4, 2001
4:02 pm
Hi, Philip! ... I don't think so either. I've added patch that makes it work with server that returns keep-alive connection (it died on timeout before), but...
167 Philip Molter
philip@... Send Email
Apr 4, 2001
4:20 pm
... It is in Perl, but this company has a strict non-disclosure policy. It's really a very simple module, though. Basically, send the keep-alive, and don't...
168 Brutsch, Michael
mbrutsch@... Send Email
Apr 4, 2001
8:48 pm
I'm trying to solve a security issue with running CGIs as root. I'm writing an app to remotely manage a linux box, and I'd like to use SOAP. Problem is, the...
169 Paul Kulchenko
paulclinger@... Send Email
Apr 4, 2001
9:11 pm
Hi, Michael! Interesting question, but it seems like you don't need SOAP server that will forward requests, you just need to have simple proxy that will...
170 mbrutsch@... Send Email Apr 4, 2001
9:29 pm
... response ... request ... No, you have the essence of the problem. I just don't know how to go about writing the 'simple proxy that will forward request to...
171 Robert Barta
rho@... Send Email
Apr 4, 2001
11:03 pm
... OH, YES! One issue I will have in the next future is: speed. Currently SOAP::Lite is using Expat, which is stable and working. But in the case of SOAP and...
172 Paul Kulchenko
paulclinger@... Send Email
Apr 4, 2001
11:21 pm
Hi, Robert! ... Actually you'll be able to specify any parser (SOAP::Lite has SOAP::Serializer which has SOAP::Parser which refers to XML::Parser). You may...
173 mbrutsch@... Send Email Apr 5, 2001
4:19 pm
I found a port forwarder in the Perl Cookbook(tm), and it seems to work well. (I run webmin on localhost:10000; if I forward 8000 to 10000, then I can access...
174 Paul Kulchenko
paulclinger@... Send Email
Apr 5, 2001
4:48 pm
Hi, Michael! Usually that means that server returned fault message. You may check fault first: my $soap = SOAP::Lite ->uri/proxy/etc() ->method(@parameters); ...
175 Brutsch, Michael
mbrutsch@... Send Email
Apr 5, 2001
5:09 pm
... Now I just get 'Can't call method "fault" on an undefined value' instead. ... Tried this, no discernable change in output. ... At present, I have no output...
176 Bas A. Schulte
b.schulte@... Send Email
Apr 5, 2001
10:11 pm
Hi, I'm trying to expose a little object model using SOAP. The code for the classes is physically located in /home/bas/model. I'm using Apache::SOAP...
177 Robert Barta
rho@... Send Email
Apr 7, 2001
12:20 am
... How is it done currently? Is it first parsed into some DOM/grove-like structure and then into the Perl data structure? Or is it done in one sweep? In the...
178 Paul Kulchenko
paulclinger@... Send Email
Apr 9, 2001
8:17 pm
Hi, Bas! Actually you did almost everything right. I'm not sure about PerlAddVar and rather do: <Location /soap> PerlSetVar dispatch_to "/home/bas/model,...
179 gavinbong@... Send Email Apr 10, 2001
3:25 am
If I point SOAP::lite to read a WSDL that contains an unknown type, e.g. <wsdl:message name="in"> <part name="a" type="foo:mytype"> </wsdl:message&gt; will...
180 Paul Kulchenko
paulclinger@... Send Email
Apr 10, 2001
4:09 am
Hi, Gavin! It won't be able to properly describe it, but it'll create placeholder for it and should should be able to put your object or variable there. Should...
181 mbrutsch@... Send Email Apr 10, 2001
7:17 pm
The SOAP::Lite guide states that "during dynamic dispatch access to @INC is disabled (due to security reasons)". Before I go hacking SOAP::Lite to remove this...
182 Paul Kulchenko
paulclinger@... Send Email
Apr 10, 2001
8:16 pm
Hi, mbrutsch! ... I don't recommend you to do it. Almost any security restriction is there for a reason. If you use static dispatch, name of the class is ...
183 vaibhav_arya@... Send Email Apr 10, 2001
8:42 pm
Hi: I am trying to develop a Web Service that will also be accessible by VB clients on their desktops, I have the server and some clients running perl...
184 Paul Kulchenko
paulclinger@... Send Email
Apr 10, 2001
9:17 pm
Hi, Vaibhav! Yes, Perl autoload magic is not available from COM interface (though I'll need to do some tests, maybe it's something that could be worked out)....
185 Brutsch, Michael
mbrutsch@... Send Email
Apr 10, 2001
9:45 pm
Hi Paul! ... I'm trying to use the regex-enabled static dispatch. Here are my files, and their locations: My module is in ...
186 Paul Kulchenko
paulclinger@... Send Email
Apr 10, 2001
10:15 pm
Hi, Michael! ... use lib '/opt/camelot/lib'; or combine static and dynamic approach in dispatch_to (all directories will be added to @INC during static...
187 vaibhav_arya@... Send Email Apr 11, 2001
5:57 am
Paul: Thanks for your message, will try and keep you updated! My understanding is that the problem in the COM-OO interface is that VB requires to have an...
188 Paul Kulchenko
paulclinger@... Send Email
Apr 11, 2001
6:07 am
Hi, Vaibhav! ... Cannot tell you for sure about first line (you may even try to skip it), but second line should probably look like: Set a =...
Messages 159 - 188 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