Hello guys,
I have access to a webservice done in C#.
Location: http://radarweb.wk.com.br/radarwebwebservices/Areas/
It have methods I can use and have access to the bases.
I can access it using XML, for example:
He has access with json and there comes the question:
How do I access this type of webservice using json?
I have access to a webservice done in C#.
Location: http://radarweb.wk.com.br/radarwebwebservices/Areas/
It have methods I can use and have access to the bases.
I can access it using XML, for example:
B4X:
Private Sub Busca_XML
Dim JOB As HttpJob
Dim EndPesq as String
Dim strXML As String = File.ReadString(File.DirAssets, "cfrt.xml")
EndPesq="http://radarweb.wk.com.br/radarwebwebservices/Areas/Empresarial/Empresarial.svc"
JOB.Initialize("FindM", Me)
JOB.PostString(EndPesq, strXML)
JOB.GetRequest.SetContentType("text/xml; charset=utf-8")
JOB.GetRequest.SetHeader("SOAPAction", urlHearder)
JOB.GetRequest.SetContentEncoding("gzip, deflate")
End Sub
Sub JobDone(Job As HttpJob)
If Job.Success Then
....
End If
Job.Release
End Sub
He has access with json and there comes the question:
How do I access this type of webservice using json?