Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
P is for Practical
 
PerlMonks  

Re: SOAP::Lite in Windows

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

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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 29, 2003 at 21: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
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.