search for: dispatch_to

Displaying 1 result from an estimated 1 matches for "dispatch_to".

Did you mean: dispatch_h
2006 Apr 27
1
SOAP service - perl server, ruby consumer incompatability
...the server side and one on the client side. *Server Side* First, the script. === cgi script - located in c:/apache/cgi-bin/misc/ OdbcBridgeServer.pl === #!C:/perl/bin/perl.exe -w use strict; use SOAP::Transport::HTTP; use OdbcBridgeServer; my $name = shift; SOAP::Transport::HTTP::CGI -> dispatch_to(''OdbcBridgeServer'') -> handle; === end cgi script === Secondly, the Perl server side module (this is a cut down version). === module file - located in c:/perl/lib/OdbcBridgeServer.pm === package OdbcBridgeServer; use DBI; use strict; sub new { my $type = shift(@_);...