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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 806 - 835 of 6629   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
835 Ivan R. Judson
judson@... Send Email
Sep 19, 2001
7:39 pm
Hey Paul, I was thinking it looked like that. Good to know I wasn't off too far. I'll probably write this by hand for now, then I'll search for example code ...
834 Paul Kulchenko
paulclinger@... Send Email
Sep 19, 2001
7:26 pm
Hi, Ivan! ... in OO notation it might be: [server] package PersistentHandler; my $handler; sub new { $handler ||= initHandler(); } sub initHandler { # like in...
833 Ivan R. Judson
judson@... Send Email
Sep 19, 2001
6:55 pm
Hey Paul, In the first thread below there's a conversation about a persistant handler, with methods getHandler and initHandler. This is almost exactly like...
832 Paul Kulchenko
paulclinger@... Send Email
Sep 18, 2001
9:58 pm
Hi, Ivan! ... It's available in activestate perl ;). It's just not bundled with it by default (they use 0.46 as far as I know). You can upgrade to 0.51 using...
831 judson@... Send Email Sep 18, 2001
9:46 pm
1) When will 0.51 be available in activestate perl :-) 2) how do you have a persistant object on the server side? --Ivan...
830 Paul Kulchenko
paulclinger@... Send Email
Sep 18, 2001
2:53 pm
Hi, Jean-Jack! ... Very strange. You're the first who reports about such problem and my tests don't show anything like this. Do you have a public server that I...
829 Jean-Jack M. Riethoven
pow@... Send Email
Sep 18, 2001
1:42 pm
Greetings! Just as you thought you got rid of me, here I am again :) ... Thank you for the explanation on the array passing - it makes it quite a bit clearer...
828 G G
yqqzz@... Send Email
Sep 15, 2001
12:21 am
DO NOT DELETE IF YOU HAVEN'T READ THIS. THIS IS A ONE TIME MAILING. This program is for real. And it works no matter which country you live in (read the...
827 Aaron E. Ross
ross@... Send Email
Sep 14, 2001
9:54 pm
... Oops. I misunderstood that code. Can you explain to me what happens when the Apache::Request object is passed into configure and handler as the first arg....
826 Aaron E. Ross
ross@... Send Email
Sep 14, 2001
9:16 pm
Paul> Paul> btw, I just gon an advice from Geoffrey Young to change handler in Paul> Apache::SOAP to something like this: Paul> sub handler ($$) { ...
825 Paul Kulchenko
paulclinger@... Send Email
Sep 14, 2001
5:39 pm
Hi, Joe! ... As Duncan already pointed it depends on transport protocols. HTTP is request/response protocol by nature, so you need to return something. It...
824 Paul Kulchenko
paulclinger@... Send Email
Sep 14, 2001
5:02 pm
Hi, Aaron! btw, I just gon an advice from Geoffrey Young to change handler in Apache::SOAP to something like this: sub handler ($$) { my $self = shift; my...
823 Aaron E. Ross
ross@... Send Email
Sep 14, 2001
3:17 pm
On Thu, Sep 13, 2001 at 10:19:46AM -0700, Paul Kulchenko wrote: Paul> Paul> Hi, Aaron! Paul> You may take a look into SOAP::Apache module. Both...
822 Paul Kulchenko
paulclinger@... Send Email
Sep 14, 2001
3:41 am
Hi, Aaron! You may take a look into SOAP::Apache module. Both Apache::SOAP (mod_soap) and SOAP::Apache (example of mod_perl handler) are implementations on top...
821 Paul Kulchenko
paulclinger@... Send Email
Sep 14, 2001
1:58 am
Hi, Jean-Jack! ... first of all, in most cases you need to pass an array reference instead of list: [@IDLIST] or \@IDLIST instead of @IDLIST It won't help in...
820 Duncan Cameron
dcameron@... Send Email
Sep 13, 2001
6:54 pm
Joe Bearing in mind that http is a send/receive protocol and that the client probably wants to know that a message did reach the server then this can be...
819 ross@... Send Email Sep 13, 2001
3:54 pm
Hi all, I am using Apache::SOAP to run SOAP server under mod_perl. Normally, if I wanted to return immediately from a method under mod_perl, I would install a...
818 Jean-Jack M. Riethoven
pow@... Send Email
Sep 13, 2001
10:48 am
Greetings, First of all my thanks for helping me with the WSDL file a couple of days ago. I was able to correct the mistakes and get the service operational. ...
817 Paul Kulchenko
paulclinger@... Send Email
Sep 12, 2001
9:05 pm
Hi, Joseph! ... Yes, because you already did ->method() call. You don't need it: $response = SOAP::Lite -> uri('http://tempuri.org/message/') -> ...
816 J Landman
landman@... Send Email
Sep 12, 2001
5:35 pm
I am using SOAP::Lite for a project, and it is wonderful. Of course, I ran into something that I hoped would not be hard to solve. What I want to do is quite...
815 Joseph Norris
jozefn@... Send Email
Sep 12, 2001
4:39 pm
Thanks Paul. However I run into this situation: I have built a very simple script to test the information in the page you sent me. use SOAP::Lite; $response =...
814 Paul Kulchenko
paulclinger@... Send Email
Sep 12, 2001
7:00 am
Hi, Joseph! Take a look here, it may answer your question http://groups.yahoo.com/group/soaplite/message/550 You may also find useful section that describes...
813 Joseph Norris
jozefn@... Send Email
Sep 11, 2001
11:22 pm
I have had some real success with my most recent soap projects, but still a real newbie in use of Soap::Lite - so please bare with me. I have the following...
812 Paul Kulchenko
paulclinger@... Send Email
Sep 11, 2001
2:44 am
Hi, Philip! ... I'd love too. I'd rather see something more like: -> proxy('https://localhost/ref', ssl_ca_path => '/path/to/certs'); That's the place for all...
811 Paul Kulchenko
paulclinger@... Send Email
Sep 10, 2001
6:47 pm
Hi, Jean-Jack! ... Yes, there are some differences between parameters you specified in direct call and parameters in WSDL. First of all, namespace is...
810 cjbecjbe@... Send Email Sep 10, 2001
6:46 pm
a server written in SOAP Lite seems to block - but only when the server is running on a windows NT machine, and the client is written in java / apacheSOAP....
809 Jean-Jack M. Riethoven
pow@... Send Email
Sep 10, 2001
11:47 am
Greetings, I am trying to set up a SOAP service using the Perl SOAP::Lite modules, and I was up and running in less than 10 minutes (Kudos to the developer of ...
808 jleone@... Send Email Sep 6, 2001
3:10 pm
Hi Paul, Some of what you wrote went a little over my head, but I followed your lead to go read the SOM docs. From them I got dataof and valueof to work on...
807 Philip Mikal
philip_mikal@... Send Email
Sep 6, 2001
12:50 am
Hello, I was reading the SOAP cookbook at http://cookbook.soaplite.com as well as this list's archives looking for information on using SSL certificates with a...
806 Paul Kulchenko
paulclinger@... Send Email
Sep 5, 2001
11:08 pm
Hi, John! ... yes. ... yes. here is the prototype: package ...; use vars '@ISA'; @ISA = 'SOAP::Server::Parameters&#39;; sub paramsByNameOrOrder { my $self = shift;...
Messages 806 - 835 of 6629   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help