Hallo there,
I want to use the solution with HttpJob and HttpUtils2Service, which is provided as an example application by Erel.
I built a .Net-Webservice, Parameters are supplied by POST-Method.
It returns a XML-String, which will parsed with SAX-Parser.
Here ist the snippet of the modified sample code:
....
WebService_URL = "http://192.168.80.22/PMDSService/Service.asmx/getZusatzeinträge"
WebService_Parameters = "IDPflegeplan=xx"
Dim job1 As HttpJob
job1.Initialize("MyJob", Me)
job1.PostString(WebService_URL, WebService_Parameters)
End Sub
Sub JobDone (Job As HttpJob)
If Job.Success = True Then
Dim x As String
x = Job.GetString
Dim xx As InputStream
xx = Job.GetInputStream
.....
The result as string is correct, the InputStream is empty.
Any ideas, what could be wrong?
Kind regards, Oskar
I want to use the solution with HttpJob and HttpUtils2Service, which is provided as an example application by Erel.
I built a .Net-Webservice, Parameters are supplied by POST-Method.
It returns a XML-String, which will parsed with SAX-Parser.
Here ist the snippet of the modified sample code:
....
WebService_URL = "http://192.168.80.22/PMDSService/Service.asmx/getZusatzeinträge"
WebService_Parameters = "IDPflegeplan=xx"
Dim job1 As HttpJob
job1.Initialize("MyJob", Me)
job1.PostString(WebService_URL, WebService_Parameters)
End Sub
Sub JobDone (Job As HttpJob)
If Job.Success = True Then
Dim x As String
x = Job.GetString
Dim xx As InputStream
xx = Job.GetInputStream
.....
The result as string is correct, the InputStream is empty.
Any ideas, what could be wrong?
Kind regards, Oskar