Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3901 - 3930 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3901
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...
Nils Sowen
nsowen
Offline Send Email
Sep 1, 2004
7:27 am
3902
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 ...
Nils Sowen
nsowen
Offline Send Email
Sep 1, 2004
8:17 am
3903
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...
Mohammadreza
mshojatalab
Online Now Send Email
Sep 1, 2004
11:27 am
3904
A function exists to convert the packed network address to unpacked inet_ntoa($iaddr) You may have to "use Socket". Mark ... _______________________________ Do...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 1, 2004
2:41 pm
3905
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...
aviannachao
Offline Send Email
Sep 1, 2004
4:03 pm
3906
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...
aviannachao
Offline Send Email
Sep 1, 2004
8:57 pm
3907
Hi, I have Win32 Activeperl installed (5.8), which includes SOAPLite 0.55. It was suggested that I install SOAPLite 0.6, possibly from ...
bearlythere4444
Offline Send Email
Sep 2, 2004
8:14 pm
3908
I installed SOAP::Lite v60 on Windows XP using the distribution on CPAN. I simply did "perl Makefile.PL" and "nmake"[1] [1] ...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 2, 2004
8:26 pm
3909
Hi! I succesfully created a custom fault response in XMLRC with: die SOAP::Fault ->faultcode(XMLRPC::Data->type('int',99)) ->faultstring('myCustomFault'); Is...
lopezfreemail
Offline Send Email
Sep 3, 2004
9:57 am
3910
Hi all, I made a simple hello world web service, and a corresponding WSDL page. #HelloWorld.pl use SOAP::Transport::HTTP; use HelloWorld; ...
aviannachao
Offline Send Email
Sep 3, 2004
8:43 pm
3911
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 ...
Issac Goldstand
margol_il
Offline Send Email
Sep 5, 2004
5:48 pm
3912
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...
Reger Alexander
ar_munich
Offline Send Email
Sep 7, 2004
12:39 pm
3913
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...
mehmet_kn
Offline Send Email
Sep 9, 2004
1:10 pm
3914
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...
Nils Sowen
nsowen
Offline Send Email
Sep 10, 2004
3:50 pm
3915
... 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...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 10, 2004
4:38 pm
3916
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...
Patrik Wallstrom
pawal@...
Send Email
Sep 13, 2004
8:48 am
3917
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...
bearlythere4444
Offline Send Email
Sep 13, 2004
10:49 am
3918
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...
reidyre
Offline Send Email
Sep 14, 2004
8:41 pm
3919
... Well then, I'd say the first advice would be.. Return the book for the proper language?...
Thomas Charron
tcharron@...
Send Email
Sep 14, 2004
8:59 pm
3920
... 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...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 14, 2004
9:16 pm
3921
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...
supertux1
Offline Send Email
Sep 14, 2004
9:46 pm
3922
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...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 14, 2004
10:00 pm
3923
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:...
Peter Rooke
peterrooke
Offline Send Email
Sep 14, 2004
11:21 pm
3924
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...
Peter Rooke
peterrooke
Offline Send Email
Sep 14, 2004
11:27 pm
3925
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...
supertux1
Offline Send Email
Sep 15, 2004
3:03 am
3926
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...
Gordon Pate
gpate3
Offline Send Email
Sep 15, 2004
3:04 pm
3927
Say I have the following WSDL sniplet: <wsdl:binding name="HelloWorldBinding" type="tns:HelloWorldPortType"> <soap:binding style="document" ...
aviannachao
Offline Send Email
Sep 15, 2004
4:43 pm
3928
... 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...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 15, 2004
5:19 pm
3929
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. ...
Klaus Guenter
klaus.guenter@...
Send Email
Sep 16, 2004
2:29 pm
3930
... 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...
Mark Fuller
amigo_boy2000
Offline Send Email
Sep 16, 2004
2:55 pm
Messages 3901 - 3930 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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