Advanced Soap communication with traditional ASP

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hello,

I've used SOAP to communicate before, and it has always been straightforward:

Set Client = Server.CreateObject("MSSOAP.SoapClient.1")
Client.mssoapinit "c:\InetPub\Server\File.wsdl"
Client.Authenticate("username","password")

I have a new project that involves working with a Soap server that was built
using .Net technology (something I don't have the option of upgrading to). I
can't seem to connect using the standard approach above and I'm not entirely
sure if it is even possible to connect to them using traditional asp.

When I look at their C# example file they do a lot of OO style programming,
like this:
Authenticate req = new Authenticate();
req.username = "test";
req.password = "testpassword";
AuthenticationSoapBinding bind = new AuthenticationSoapBinding();
bind.Url = bind.Url.Replace(DEFAULT_ENDPOINT, CURRENT_ENDPOINT);
AuthenticateResponse resp = bind.Authenticate(req);

I don't even know where to start on how to do something like this using
traditional asp.

So, are there examples of using ASP to connect to .NET soap environments
like this? Examples of building Soap objects using the MSSOAP client?

Any help would be appreciated


.



Relevant Pages

  • Python, SOAP & SSL
    ... have to comunicate through SOAP. ... comunication we use SSL. ... package has various SOAP servers defined. ... expecify CA or ist certificate to authenticate itself to the SOAPServer. ...
    (comp.lang.python)
  • Re: best way implement web service with authentication.
    ... But it's a better idea to encrypt and pass the SOAP headers. ... Best way to authenticate the client. ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • System service, admon with web interface
    ... I will make a system service; the app have admin module and normal users can log in and authenticate (SOAP) to have been granted access for. ...
    (borland.public.delphi.thirdpartytools.general)
  • SOAPpy SOAP and/or WSDL Question
    ... a series of SOAP client functions that ping, authenticate (password ... username), and query a SOAP server. ... on part of the download SOAP outgoing message. ...
    (comp.lang.python)