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 6291 - 6321 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6291 rahed
raherh Send Email
Feb 19, 2009
12:14 pm
... You can get the address from peerhost method applied on a connected socket. The method is from IO::Socket::INET. -- Radek...
6292 rahed
raherh Send Email
Feb 20, 2009
9:38 am
On Thu, Feb 19, 2009 at 2:56 PM, dennis.davidoff ... I use ForkOnAccept module which is part of the distribution: $daemon->ForkOnAccept::handle; ... package...
6293 sergey.romanovsky
sergey.roman... Send Email
Mar 4, 2009
2:25 pm
Hello, I've got a problem with running SOAP::Lite service under mod_perl. In module SOAP::Transport::HTTP::Apache function handler there's Expect header...
6294 bostromanders Send Email Mar 6, 2009
2:53 pm
Hallo I'm trying to use a server that is said to use "integrated security". Anyone that knows what that refers to? And is that something that SOAP-Lite can...
6295 tomsw Send Email Mar 10, 2009
10:07 pm
Hi, I have a web service that needs to respond to soap requests from two name spaces. (The current namespace and a legacy one.) I'm swapping out the uri in...
6296 Vlad
vlad@... Send Email
Mar 12, 2009
2:18 pm
Hello everyone, I've encountered the following problem while implementing Web Service server side using Soap::Lite (Perl). I receive the following error...
6298 jing han
jing_han_66 Send Email
Mar 13, 2009
7:33 pm
unsubscribe...
6299 malcolmpdx Send Email Mar 17, 2009
9:05 pm
I'm certain that buried somewhere in the archives there is the answer to my question, but so far, I've been unable to find it, at least in the form that I can...
6300 Peter Farr
pgfarr Send Email
Mar 19, 2009
12:19 am
I am pretty new to this so I am probably doing something stupid, but I can't figure it out. I have the following code attempting to access a commercial product...
6301 rahed
raherh Send Email
Mar 19, 2009
1:44 pm
... Try this, it should generate exactly the same structure. $SOAP::Constants::PREFIX_ENC = 'SOAP-ENC&#39;; @data = ( ['modified_by_name&#39;,'admin'], ); ...
6302 Petar Shangov
pshangov Send Email
Mar 23, 2009
6:30 pm
Hi, I have a SOAP::Lite based server and an need to enable soma advanced debugging. In particular, I need to print out the full requests and responses for each...
6303 rahed
raherh Send Email
Mar 23, 2009
9:12 pm
... I simply use use SOAP::Lite +trace=>&#39;all'; It's documented in SOAP::Trace. -- Radek...
6304 Petar Shangov
pshangov Send Email
Mar 24, 2009
4:19 pm
Hi, I have tried enabling all traces but that is no what I need. +trace->&#39;all' gives me this: SOAP::Transport::new: () SOAP::Serializer::new: () ...
6305 Petar Shangov
pshangov Send Email
Mar 24, 2009
8:14 pm
Hi, Using WinXP, Strawbery Perl 5.10, latest SOAP::Lite from cpan. I am running the daemon script from the command line. Like I said, I tried printing to a...
6306 Petar Shangov
pshangov Send Email
Mar 24, 2009
11:18 pm
Hi, I have attached a sample test script that produces no output on my machine. Regards, Petar...
6307 Lee Carmichael
lecar_red Send Email
Mar 25, 2009
1:14 am
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...
6308 rahed
raherh Send Email
Mar 25, 2009
8:31 am
... Apparently you access your local server. I haven't tried this. When you call a remote host you must get what you want, xml request & response. I guess the...
6309 Lee Carmichael
lecar_red Send Email
Mar 25, 2009
5:43 pm
Hello Petar, After seeing your example, I just realized that you are trying to debug a server. Sorry my last post won't be much help since it seems that...
6310 Petar Shangov
pshangov Send Email
Mar 25, 2009
6:32 pm
Hi, thanks to everyone who responded. ... rahed, the problem turned out to be that all the relevant tracing calls are made inside SOAP::Transport::HTTP::Client...
6311 sampengdotnet Send Email Apr 2, 2009
2:19 pm
hi SOAP::Lite experts I met a problem in retrieve SOAP call result. when i can a remote method use SOAP::Lite;# + trace => qw(method debug); my $PROXY =...
6312 Martin Busik
mbusik70 Send Email
Apr 2, 2009
2:35 pm
Hello list, I was googling on SOAP::Lite and WS-Security / userToken, but haven't found an appropriate solution. There is a package WSRF::Lite, but this does...
6313 Srinivas Vippagunta
srinivasvipp... Send Email
Apr 2, 2009
7:22 pm
Hello, I am trying to construct the parameters for a method. I am following instructions at ...
6314 Srinivas Vippagunta
srinivasvipp... Send Email
Apr 2, 2009
9:11 pm
Hello, Is there an easy way to suppress the type info in a request? For eg: my $method = SOAP::Data->name('TestMethod&#39;) ->attr({xmlns => 'http://abc.com/&#39;}); ...
6315 Petar Shangov
pshangov Send Email
Apr 2, 2009
9:47 pm
You can always create the xml you need using whatever tool you wish and them pass it in raw format to SOAP::Data. From the docs: $xml_content =...
6316 Srinivas Vippagunta
srinivasvipp... Send Email
Apr 2, 2009
9:49 pm
Thanks peter. I tried that and it works but I was somehow hesitant in using the raw xml. I figured out a way to suppress the type info. I created a custom...
6317 Lee Carmichael
lecar_red Send Email
Apr 6, 2009
4:24 pm
Hello, Maybe I'm missing something more here but when I want to make sure SOAP::Lite doesn't do its automatic typing of an data element I just use the 'type'...
6318 Lee Carmichael
lecar_red Send Email
Apr 6, 2009
5:03 pm
Hello, In your example, $ret is really a soap response object (SOM) unless something happened to cause an exception (die or croak) to occur. You can read the...
6319 rahed
raherh Send Email
Apr 7, 2009
7:48 am
... $s->autotype(0); should be ok for requests from a client. -- Radek...
6320 Allen Goldschmidt
allengo Send Email
Apr 11, 2009
5:21 pm
I installed ActiveState PERL and then used CPAN command line to install SOAP::Lite. It freezes in the middle of the installation at...
6321 Petar Shangov
pshangov Send Email
Apr 12, 2009
9:20 pm
This is a known bug, reported at rt.cpan.org, but has not been fixed yet....
Messages 6291 - 6321 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