N
newby
Hi all,
I'm new to web services client implementations with VB.NET
and now I have a challenge in fornt of me. I have to
interface with a web service that has been built based on
a .cgi wrapper. Is this possible from VB.NET? I have tried
for quite some time now but I didn't find the way to do
it. I have a client built on Perl which is working just
fine ( see details below ) however I can't get it working
with vb.Net
Implementation details with Perl:
==========================================================
use CGI ':standard';
print header;
use SOAP::Lite +autodispatch =>
uri => 'NotesAccessor',
proxy=> '<<http://sgdev/cgi/NotesAccessorWrapper.cgi>>';
my $obj = NotesAccessor->new();
my $result = $obj->QueryNotes("SELECT * FROM HOTLIST");
==========================================================
I'm new to web services client implementations with VB.NET
and now I have a challenge in fornt of me. I have to
interface with a web service that has been built based on
a .cgi wrapper. Is this possible from VB.NET? I have tried
for quite some time now but I didn't find the way to do
it. I have a client built on Perl which is working just
fine ( see details below ) however I can't get it working
with vb.Net
Implementation details with Perl:
==========================================================
use CGI ':standard';
print header;
use SOAP::Lite +autodispatch =>
uri => 'NotesAccessor',
proxy=> '<<http://sgdev/cgi/NotesAccessorWrapper.cgi>>';
my $obj = NotesAccessor->new();
my $result = $obj->QueryNotes("SELECT * FROM HOTLIST");
==========================================================