web service access

  • Thread starter Thread starter newby
  • Start date Start date
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");

==========================================================
 
Any takers on this below? I need to have this project
terminated by tomorrow. I just need the kick off tip
Please help ;-0

Thanks in advance for your prompt response.
 
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

Sorry, I can't help you but you may get more responses in the following
group:

Microsoft.public.dotnet.framework.aspnet.webservices
 
Back
Top