Android Question Consuming WebService with 'Wait for'. How pass parameters

Juan Vargas (Bioagro)

Member
Licensed User
I have been looking for an example to call a .NET webservice function, with an Xml parameter. Most examples are like this
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?
 

OliverA

Expert
Licensed User
Longtime User
Can you post any documentation on the API of the service you are trying to use?
 
Upvote 0

MicroDrie

Well-Known Member
Licensed User
I thought you had to pass an XML parameter to the download url.
 
Upvote 0
Top