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 2304 - 2333 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2304 Mike Kopack <makop...
makopack Send Email
Jan 26, 2003
4:57 am
Hi gang. I'm currently helping write a book on web services. One of the toolkits we're looking to discuss in the book is SOAP::Lite. Unfortunately this is a...
2305 Randy J. Ray
rjray_perl Send Email
Jan 26, 2003
6:16 am
... This probably isn't what he has in mind, but let me take the opportunity to point out that the book, "Programming Web Services with Perl" (co-written by ...
2306 fulkohew <fulkohew...
fulkohew Send Email
Jan 27, 2003
4:13 pm
In my server when I add: use SOAP::Lite +trace; I get the error: Use of uninitialized value in join or string at /usr/lib/perl5/site_perl/5.6.0/SOAP/Lite.pm...
2307 fliragne <florian....
fliragne Send Email
Jan 29, 2003
10:46 am
is there a way to log the SOAP request (means the xml body)?? I need this feature for some debugging work, but i don't have find it in the doc. thanks for...
2308 Andy Kelk
mopoke_uk Send Email
Jan 29, 2003
12:48 pm
Hi there, I have an array of data which I want to send in a SOAP request and expect it to come out something like this: <skuElements> <product sku="Test";> ...
2309 starnuto_di_topo <...
starnuto_di_... Send Email
Jan 29, 2003
1:45 pm
Hallo! I'm using a SOAP::lite client to call a GLUE server. In the WSDL, it is pecified to connect to the service at http://127.0.0.1:8080/abc : <soap:address...
2310 fulkohew <fulkohew...
fulkohew Send Email
Jan 29, 2003
2:20 pm
Why can't I programatically define the host name and port number? Statically it works, but dynamically I get the error: IO::Socket::INET: Bad hostname ':' ... ...
2311 Sean.Meisner@... Send Email Jan 29, 2003
3:00 pm
Hi Fulko, You can't do that because "use" happens at compile-time, before $host and $port are defined. A common trick is to put the use in a string and then...
2312 Sean.Meisner@... Send Email Jan 29, 2003
3:03 pm
Whoops, I didn't escape one of the lines in that example properly: Change proxy => "tcp://\$host:\$port", to proxy => \"tcp://$host:$port\", Cheers, ...
2313 Dan Muey
dmuey@... Send Email
Jan 29, 2003
3:05 pm
... I do this and it works for me : my $soap = SOAP::Lite -> uri("http://www.simplemood.com/Uri_$uri_prxy") -> proxy("$http_prot&#92;://$domain/$uri_prxy.cgi") ->...
2314 Keanan Smith
KSmith@... Send Email
Jan 29, 2003
4:34 pm
A better way to do it would be: BEGIN { $host = 'localhost&#39;; $port = 2000; } use SOAP::Lite +autodispatch => uri => 'http://wecan.com/', proxy...
2315 Sean.Meisner@... Send Email Jan 29, 2003
5:13 pm
Now personally I don't like this approach because I like to put "use strict" as the first line after my shebang in every new perl file I start. This approach...
2316 fulkohew <fulkohew...
fulkohew Send Email
Jan 29, 2003
5:27 pm
Why can't I programatically define the host name and port number? Statically it works, but dynamically I get the error: IO::Socket::INET: Bad hostname ':' ... ...
2317 Keanan Smith
KSmith@... Send Email
Jan 29, 2003
5:54 pm
Heh, so me and Sean.Meisner were discussing how this example could be fixed up to work with 'use strict' basically the crux of the issue is that $host and...
2318 Dan Muey
dmuey@... Send Email
Jan 29, 2003
6:09 pm
I have a quick question about a SOPA::Lite Server. Is therea way to set variables for the whole package so that they can be used by any subroutine? Example :: ...
2319 Keanan Smith
KSmith@... Send Email
Jan 29, 2003
6:34 pm
Try this in your SOAP::Lite creation: use SOAP::Transport::Whatever on_action => sub { $JoeMama::user = $ENV{'REMOTE_USER'}; ($JoeMama::this, $JoeMama::that,...
2320 Dan Muey
dmuey@... Send Email
Jan 29, 2003
6:35 pm
Thanks I'll give that a go and see how it does!...
2321 Dan Muey
dmuey@... Send Email
Jan 29, 2003
6:45 pm
I'm trying to get erros to report better, here is what I have print header; my $soap = SOAP::Lite -> uri("http://www.simplemood.com/Uri_$uri_prxy") ->...
2322 Dan
dmuey@... Send Email
Jan 30, 2003
3:00 am
Hello, is there any way to tell what domain is calling a server. I set up a server and had it send back html with all of the %ENV in them. The only thing I...
2323 Andy Kelk
mopoke_uk Send Email
Jan 30, 2003
1:20 pm
Hi, Have managed to solve my own problem after a good night's sleep and a bit more trying. Adjusted Code snippet follows: my $soap = SOAP::Lite ->...
2324 Mike Kopack <makop...
makopack Send Email
Jan 30, 2003
2:34 pm
Hey gang, Ok, I'm trying to figure out how to get started with SOAP::Lite. I installed ActivePerl (newest release) on my Win2000 machine, and I have IIS...
2325 fulkohew <fulkohew...
fulkohew Send Email
Jan 30, 2003
2:51 pm
... Thanks! That indeed works. I had tried everything under the sun, but I had forgotten about the scopping issue with the braces, so I tried making them main...
2326 Sean.Meisner@... Send Email Jan 30, 2003
3:04 pm
What version of Perl are you using, on what OS? I'm not seeing that behaviour in the autodispatching client I run on Linux and Solaris, using 5.6.1 and 5.6.0...
2327 Dougal Campbell
dougal@... Send Email
Jan 30, 2003
3:10 pm
... Under your perl installation&#39;s "site/lib"; directory. For example, if you installed ActivePerl in "C:\Perl", then look in "C:\Perl\site\lib\SOAP&quot;. ... Start...
2328 fulkohew <fulkohew...
fulkohew Send Email
Jan 30, 2003
4:54 pm
... I'm currently developing on 5.6.1 on Linux (RedHat 7.2) I'll try to get and post another code snippet to show as an example....
2329 quinn@...
quinn_weaver Send Email
Jan 30, 2003
6:04 pm
... The problem is that autodispatch relies on AUTOLOAD. If a function or method can't be found in your local code, SOAP::Lite&#39;s AUTOLOAD gets invoked and...
2330 bentechie2000 <ben...
bentechie2000 Send Email
Jan 30, 2003
6:08 pm
Hi We are proud to bring you the most comprehensive knowledge resource portal on SAN Technology, http://www.techieindex.com/SAN The ultimate tool for SAN...
2331 sufimufti <sufimuf...
sufimufti Send Email
Jan 31, 2003
2:56 am
Hello All, I am return HTML String from SOAP Lite Sever to a client running on Apace SOAP. The problem is that SOAP Lite is converting the HTML String (which...
2332 diane7b <diaben@.....
diane7b Send Email
Jan 31, 2003
5:20 pm
I have a java soap service that takes a user-defined object as request parameter and returns a user-defined object as the soap response. I have a java client...
2333 Steve Piercey
vbfan78 Send Email
Jan 31, 2003
6:07 pm
... I'm using Apache Axis 1.0 with a SOAP::Lite client. I've found that the maptype() and blessed object references work together well for Java I have a...
Messages 2304 - 2333 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