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 3901 - 3930 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
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...
3910 aviannachao Send Email Sep 3, 2004
8:43 pm
Hi all, I made a simple hello world web service, and a corresponding WSDL page. #HelloWorld.pl use SOAP::Transport::HTTP; use HelloWorld; ...
3911 Issac Goldstand
margol_il Send Email
Sep 5, 2004
5:48 pm
Try adding http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer58 as a PPM repository and then do: ppm upgrade -install -precious SOAP-LiteThat might ...
3912 Reger Alexander
ar_munich Send Email
Sep 7, 2004
12:39 pm
Hi group, I'm having problems in generating a call to a webservice. The generated xml-code is ok, except for a ghost-tag. I'm using the following perl-code to...
3913 mehmet_kn Send Email Sep 9, 2004
1:10 pm
hi, i want to know the adavantages and drawbacks of using webservices over http/webserver compared to the use via socket?? when i should use http and when...
3914 Nils Sowen
nsowen Send Email
Sep 10, 2004
3:50 pm
hello everybody - i use SOAP::Transport::HTTP::Daemon as my soap-server, it's supposed to dispatch all request to a certain perl module. now i got the problem...
3915 Mark Fuller
amigo_boy2000 Send Email
Sep 10, 2004
4:38 pm
... Try "print ref($SOAP_envelope);" When I do it on a SOM object it tells me it is a reference to "SOAP::Data". Mark _______________________________ Do you...
3916 Patrik Wallstrom
pawal@... Send Email
Sep 13, 2004
8:48 am
Hi. I have a problem with a web application since upgrading Perl from 5.005 to 5.8.5. Some SOAP::Lite functions in the application gives some Mason web pages a...
3917 bearlythere4444 Send Email Sep 13, 2004
10:49 am
I mean in the sense that PHP does, where variables submitted to a form are immediately available without any special effort. I vaguely remember reading...
3918 reidyre Send Email Sep 14, 2004
8:41 pm
All, I am new to writing web services, but not to Perl. Is there a how-to on what to do? I have the "Web Services with Perl" book from O'Reilly, but I'm...
3919 Thomas Charron
tcharron@... Send Email
Sep 14, 2004
8:59 pm
... Well then, I'd say the first advice would be.. Return the book for the proper language?...
3920 Mark Fuller
amigo_boy2000 Send Email
Sep 14, 2004
9:16 pm
... Ron, I've got some examples I created to help people get up to speed as painlessly as possible. I can mail them to you if you want. BTW: Don't feel alone...
3921 supertux1 Send Email Sep 14, 2004
9:46 pm
Background: I've got a Document-Literal Wrapped web service which runs on SOAP::Lite and is dispatched with a modified Apache::SOAP. It uses WSDL files which...
3922 Mark Fuller
amigo_boy2000 Send Email
Sep 14, 2004
10:00 pm
If you don't (can't) specify the namespace in the WSDL, then SOAP::Lite will expect to find it in Perl's main namespace. Will it work if you put the subroutine...
3923 Peter Rooke
peterrooke Send Email
Sep 14, 2004
11:21 pm
Ron Try this Quick Start with SOAP article on Perl.com: http://www.perl.com/pub/a/2001/01/soap.html PeteR ... From: reidyre [mailto:ron.reidy@...] Sent:...
3924 Peter Rooke
peterrooke Send Email
Sep 14, 2004
11:27 pm
Ron Try this Quick Start with SOAP article on Perl.com: http://www.perl.com/pub/a/2001/01/soap.html Peter Rooke Consultant Serena Software ... From: reidyre...
3925 supertux1 Send Email Sep 15, 2004
3:03 am
I found a workaround for this. This forces the dispatch to go whatever was put in the SOAPAction header. It appears to work but needs more testing. (This is in...
3926 Gordon Pate
gpate3 Send Email
Sep 15, 2004
3:04 pm
Has anyone had problems with running mod perl with soap lite, where if you have a mix of static and dynamic bindings the -w or $^W appears to be getting turned...
3927 aviannachao Send Email Sep 15, 2004
4:43 pm
Say I have the following WSDL sniplet: <wsdl:binding name="HelloWorldBinding" type="tns:HelloWorldPortType"> <soap:binding style="document" ...
3928 Mark Fuller
amigo_boy2000 Send Email
Sep 15, 2004
5:19 pm
... Look at: http://groups.yahoo.com/group/soaplite/message/3770 and http://groups.yahoo.com/group/soaplite/message/3843 Issac has done a lot with .Net and...
3929 Klaus Guenter
klaus.guenter@... Send Email
Sep 16, 2004
2:29 pm
Hi! ... Yep. ;o) At least AFAICT, there is nothing like that in SOAP::Lite. There is a way to do that with CGI.pm though, maybe you are mixing that up. ...
3930 Mark Fuller
amigo_boy2000 Send Email
Sep 16, 2004
2:55 pm
... He may be recalling something described in the POD under the heading "IN/OUT, OUT PARAMETERS AND AUTOBINDING". It shows an example of a client's variable...
Messages 3901 - 3930 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