one more question:
i found a vb example that uses the soap toolkit for VB.
This approach I'm familiar with and it's obviously easier. It's my
understanding this is referred to as high level API. The task i'm assigned
with is to use the
low level api to build the soap file "by hand"
If i make this soap xml file by hand (i posted an earlier example of what i
need), is there a reason why i couldn't use the high level api to do the
same?
I'm being told i can't use this high level API (tool kit) because i have to
do it "by hand" or manually create this file. Can someone please explain to
me why this would be? Does this have to do with a WSDL file possibly not
being used?
Thanks.
Private Sub cmdTime_Click()
Dim c As New MSSOAPLib.SoapClient
c.mssoapinit "http://www.a.com/sample.xml"
Dim sTime As String
sTime = c.GetTime()
txtTime = sTime
End Sub
"mark kurten" <ma********@discussions.microsoft.com> wrote in message
news:7B**********************************@microsof t.com...
i have a requirement to send a soap message to a web service.
i'm familiar with the soap toolkit using vb.
i need to generate a xml document which i think i can do, but i don't know
how to send it to this service.
i've accessed other web services in .net and usually there are functions i
can reference which do the processing and then return some result.
however, i've been told that no functions are available and wsdl is not
used (i'm not very familiar with this)
I'm suppose to just send this xml document (which has soap envelope,
header and body info) to this service.
can someone please point me in the right direction? i'm sort of in the
dark...thanks
unfortunately, i don't have to many details about this service, i just
know the elements i need to put in the xml doc.