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 3880 - 3909 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3880 careers@...
codem_vijay Send Email
Aug 23, 2004
5:01 am
Hi, We are currently looking for Perl professionals for one of our clients. Details are as under : Skills : Perl, Shell Scripting, Sybase Experience : 2-6...
3881 Rushikesh Joshi
rushi_asi Send Email
Aug 23, 2004
6:07 am
Hi, I have faced same problem that you having. And this group helps me lot. Try out below code to work throo. some code..... my $soapresult = SOAP::Lite ->...
3882 Tilman Baumann
Tilman.Baumann@... Send Email
Aug 23, 2004
9:07 am
Sorry, can't help you with soaplite in this case. But why don't you use a telnet like protocol? SOAP isn't really made for streams. In a simple case you could...
3883 Rushikesh Joshi
rushi_asi Send Email
Aug 23, 2004
1:56 pm
Hi All, Is any one know how to get last request & response that send & received my soapLite. I know some tricky thing to do with SOAP::Transporter, But i don't...
3884 lopezfreemail Send Email Aug 23, 2004
3:54 pm
Hi! I read that standalone daemon does not support SSL server. Thats true? If yes, how can I implement certificate based auth with mod_perl? I think I need to...
3885 Nils Sowen
nsowen Send Email
Aug 24, 2004
8:38 am
... Lopezfreemail, ... true? I did a little patch on the SOAP::Transport::HTTP::Daemon so it uses SSL encryption. Just be sure to grab the following modules: -...
3886 lopezfreemail Send Email Aug 26, 2004
6:07 am
Hi! How can I access the original http request from the soap/xmlrpc code? I need info from the client cerificate (name, etc.). I use v60, mod_perl with apache...
3887 lopezfreemail Send Email Aug 26, 2004
9:02 am
... code? ... I write a SOAP::MyApache modul, wich decodes the SSL DN and i now have ... package SOAP::MyApache; use SOAP::Transport::HTTP; my $server =...
3888 lopezfreemail Send Email Aug 26, 2004
12:56 pm
... Ok. I find that use vars(@ISA); @ISA = SOAP::MyApache; solves the problem. after that with %SOAP::MyApache::dn I can get the value if in MyApache I use our...
3889 lopezfreemail Send Email Aug 27, 2004
11:48 am
Hi! Is there a same way to construct xmlrpc fault response like in SOAP::Lite ? die SOAP::Fault->faultcode('Server.Custom') # will be qualified ...
3890 mitchbetterhavemybunny
mitchbetterh... Send Email
Aug 27, 2004
9:44 pm
I think this should be a pretty basic question, but I can't seem to find anybody who has asked it yet here in the archives. Essentially, I am trying to write...
3891 Eric Amick
eamick Send Email
Aug 28, 2004
12:38 pm
... Would something like this work? SOAP::Data->name('ConnectResponse&#39; => \SOAP::Data->value( SOAP::Data->name( 'messageversion' => '1.0' ), SOAP::Data->name(...
3892 mitchbetterhavemybunny
mitchbetterh... Send Email
Aug 29, 2004
5:05 am
... Almost. The resulting SOAP message then looks like this: <soap:body> <a:ConnectResponse xmlns:a="urn:thisElementGetsCreatedForMe&quot;> <ConnectResponse> ...
3893 Duncan Cameron
duncan_camer... Send Email
Aug 29, 2004
7:33 am
On 2004-08-29 at 05:05:00 mitchbetterhavemybunny ... If you return a list then each entry will be sent immediately beneath the ConnectResponse element: return...
3894 Eric Amick
eamick Send Email
Aug 29, 2004
2:26 pm
... I assume you meant return (SOAP::Data->name(messageversion => '1.0'), SOAP::Data->name(sequence => '123456&#39;), SOAP::Data->name(status => '0')) ; or is list...
3895 Duncan Cameron
duncan_camer... Send Email
Aug 29, 2004
8:55 pm
... I am not sure that context is the issue, rather the list is constructed first. The context of the call then dictates whether the list is returned in scalar...
3896 mitchbetterhavemybunny
mitchbetterh... Send Email
Aug 30, 2004
3:26 pm
... Perfect. Thank you, gentlemen, for sharing your insight. Scott Franklin...
3897 aviannachao Send Email Aug 30, 2004
4:44 pm
I was going to post a question about this, but then I found this very useful web page, and thought I'd share it (in case there were others banging their heads...
3898 jaykota Send Email Aug 30, 2004
7:05 pm
Hi. I am trying to use SOAP Lite to connect to a wsdl service in some perl code. However the on_fault handlers are not working for me. What am I doing wrong or...
3899 Duncan Cameron
duncan_camer... Send Email
Aug 30, 2004
7:45 pm
... The purpose of the on_fault handler is to handle SOAP faults generated by the server. From what I remember the 500 error is generated by the client, the...
3900 Dan Speers
tnjeditor Send Email
Aug 31, 2004
2:44 am
I need to have one of my arguments in a SOAP::Lite client send it's payload as a multiref object. [...] <ns1:arg12 href="#id0"/> </ns1:createArtifact> ...
3901 Nils Sowen
nsowen Send Email
Sep 1, 2004
7:27 am
Is it somehow possible to access the peer IP address when using SOAP::Transport::HTTP::Daemon? When browsing through the manpage for HTTP::Daemon I realized...
3902 Nils Sowen
nsowen Send Email
Sep 1, 2004
8:17 am
Ok, found it out myself;) ... while (my ($c,$peer) = $self->accept) { my $sockaddr_template = 'S n a4 x8'; my ($af,$client_port,$client_ip) = unpack($sock ...
3903 Mohammadreza
mshojatalab Send Email
Sep 1, 2004
11:27 am
Hi, This is probably one of the most common problem people have had, but I have seen that they have overcome the problem. I also read all emails on this but...
3904 Mark Fuller
amigo_boy2000 Send Email
Sep 1, 2004
2:41 pm
A function exists to convert the packed network address to unpacked inet_ntoa($iaddr) You may have to "use Socket". Mark ... _______________________________ Do...
3905 aviannachao Send Email Sep 1, 2004
4:03 pm
Not exactly a Soaplite issue, but I am just finding out that non-Perl (ie, MS Biztalk) clients need a WSDL page to be able to consume my Perl (Soaplite) based...
3906 aviannachao Send Email Sep 1, 2004
8:57 pm
I am just trying to get some understanding of how to access web services through WSDL. I have this piece of code which uses SOAP::Lite, and this works: use...
3907 bearlythere4444 Send Email Sep 2, 2004
8:14 pm
Hi, I have Win32 Activeperl installed (5.8), which includes SOAPLite 0.55. It was suggested that I install SOAPLite 0.6, possibly from ...
3908 Mark Fuller
amigo_boy2000 Send Email
Sep 2, 2004
8:26 pm
I installed SOAP::Lite v60 on Windows XP using the distribution on CPAN. I simply did "perl Makefile.PL" and "nmake"[1] [1] ...
3909 lopezfreemail Send Email Sep 3, 2004
9:57 am
Hi! I succesfully created a custom fault response in XMLRC with: die SOAP::Fault ->faultcode(XMLRPC::Data->type('int&#39;,99)) ->faultstring('myCustomFault'); Is...
Messages 3880 - 3909 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