Thanks for the hint for logging on the server, but no go. The logging works, however the log gives no information until the client actually connects, a minute and a half later.
I'm using Tk in my client; I wonder if that might be a problem? I threw together some sample code that breaks just as much as my full code, and it's pretty darn simple:
The sever:
#!/usr/bin/perl -w
use strict;
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::Daemon->new(LocalPort => 3004)
->dispatch_to('My::Soapy')->handle;
package My::Soapy;
sub testy { return "happy!"; }
And the client:
#!/usr/bin/perl -w
use strict;
use SOAP::Lite;
use Tk;
my $main = MainWindow->new;
my $button = $main->Button(-text => 'go!', -command => \&get);
$button->pack;
MainLoop;
sub get { print "got: " . SOAP::Lite->uri('http://tako:3004/My/Soapy')
->proxy('http://tako:3004')->testy()->result . $/; }
My only reply on the SOAP::Lite mailing list (thus far) suggests that maybe Windows isn't closing the socket, but I'm not sure how to check on that, or force it to close.
Daniel Ashbrook
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.