Displaying 1 result from an estimated 1 matches for "odbcbridgeserver".
2006 Apr 27
1
SOAP service - perl server, ruby consumer incompatability
...rl based, the
output is as expected. However, if the client is Ruby based (haven''t
tried another language), it gets an error.
I have three files. Two on 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 do...