in reply to SOAP::Lite in Windows
I've checked that client and it works fine for my windows computer.#!/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"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: SOAP::Lite in Windows
by anjiro (Beadle) on Jul 30, 2003 at 01:28 UTC |