I have been looking for an example to call a .NET webservice function, with an Xml parameter. Most examples are like this
But a webservice expect a xml parameter. How do I send the parameter with this example?
Simple example:
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.google.com")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release
But a webservice expect a xml parameter. How do I send the parameter with this example?