That was a great help - thank you! So, now I have my service working and I am getting a response. So I call the following code: -
Sub JobDone (Job As HttpJob)
If Job.Success Then
'Log("JobName = " & Job.JobName & ", Success = " & Job.Success)
Log(Job.GetString)
File.WriteString(File.DirRootExternal, "1.xml", Job.GetString)
ResultString = ""
sax.Parse(Job.GetInputStream, "sax")
Job.Release
End If
End Sub
Every time it calls the Job.GetInputStream I get a java.lang.NullPointerException
When I view the XML returned (through GetString) it looks fine. Do you know why I would be getting this error?