Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: SOAP::Lite in Windows

by mod_alex (Beadle)
on Jul 29, 2003 at 07:23 UTC ( [id://278752]=note: print w/replies, xml ) Need Help??


in reply to SOAP::Lite in Windows

Dear Daniel
First of all I'd like to suggest you to rewrite the client in the next way :
#!/usr/bin/perl -w use strict; use SOAP::Lite; use Tk; use Data::Dumper; my $main = MainWindow->new; my $button = $main->Button(-text => 'go!', -command => \&get); $button->pack; MainLoop; sub get { my $soapObj = SOAP::Lite->uri('http://devzone:3004/My/Soapy') ->proxy('http://tako:3004'); my $result = $soapObj->testy(); unless ($result->fault()) { print "result : " . $result->result() . "\n"; } else { print "faultcode : " . $result->faultcode() . ", faultctring : " . $result->faultstring() . "\n"; } }
I've checked that client and it works fine for my windows computer.
I guess there is a problem with network layer.
Try to run "ping tako" from your windows comp.
--
Alex

Replies are listed 'Best First'.
Re: Re: SOAP::Lite in Windows
by anjiro (Beadle) on Jul 30, 2003 at 01:28 UTC
    Hi Alex,

    Thanks for the suggestions. I gave your code a try, and I'm getting the same problems as in my reply to Particle above: error messages about Tk::Errror: 500 Can't read entity body. It of course works perfectly under Linux.

    I'd certainly buy that Windows has bugs in its network layer. Trying "ping tako" works fine.

    Thanks a bunch,

    Daniel Ashbrook

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://278752]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-03-28 17:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found