C
Chris Berg
Hi all.
Before anyone atttacks me: I'm not looking for someone to write my
code, just to be led in the right direction.
I have to make a SOAP call from a Java client to an existing .NET
server. I have a working client example in VB6 plus Microsoft Soap
Type Library v3.0, that looks like this:
----------------------
Sub form_load()
Dim strWsdlURL, strServiceName, strServicePort, soapclient, strXML
strWsdlURL = "http://scws.host/SCWS.wsdl"
strServiceName = "SCWS"
strServicePort = "clsSCWSSoapPort"
Set soapclient = CreateObject("MSSOAP.SoapClient30")
Call soapclient.mssoapinit(strWsdlURL, strServiceName,
strServicePort)
strXML = soapclient.GetUserByID(1, "test1", "test2")
Text1.Text = strXML
End Sub
----------------------
I am not at all skilled in VB, but I get the general idea. I suppose
it is a matter of including some obscure part of JWSDP, and then more
or less 're-write' the VB code in Java.
I've downloaded the jwsdp from Sun, but it is quite overwelming:
Tomcat installed on the disk, and a tutorial that's OVER 1000 PAGES!!
I just don't have a clue where to begin. But I have a feeling the
solution is quite simple. Isn't that the whole idea with SOAP?
Simplicity? Ease of use? Fast development? Smooth integration?
Someone MUST have done this before !!
Chris
Before anyone atttacks me: I'm not looking for someone to write my
code, just to be led in the right direction.
I have to make a SOAP call from a Java client to an existing .NET
server. I have a working client example in VB6 plus Microsoft Soap
Type Library v3.0, that looks like this:
----------------------
Sub form_load()
Dim strWsdlURL, strServiceName, strServicePort, soapclient, strXML
strWsdlURL = "http://scws.host/SCWS.wsdl"
strServiceName = "SCWS"
strServicePort = "clsSCWSSoapPort"
Set soapclient = CreateObject("MSSOAP.SoapClient30")
Call soapclient.mssoapinit(strWsdlURL, strServiceName,
strServicePort)
strXML = soapclient.GetUserByID(1, "test1", "test2")
Text1.Text = strXML
End Sub
----------------------
I am not at all skilled in VB, but I get the general idea. I suppose
it is a matter of including some obscure part of JWSDP, and then more
or less 're-write' the VB code in Java.
I've downloaded the jwsdp from Sun, but it is quite overwelming:
Tomcat installed on the disk, and a tutorial that's OVER 1000 PAGES!!
I just don't have a clue where to begin. But I have a feeling the
solution is quite simple. Isn't that the whole idea with SOAP?
Simplicity? Ease of use? Fast development? Smooth integration?
Someone MUST have done this before !!
Chris