hi,
we are using web service. we get a result as xml content from web service . i need to save as xml file in internal memory storage.. how can i do this??
Sub JobDone(j As HttpJob)
If j.Success Then
Dim out As OutputStream
out = File.OpenOutput(File.DirInternal,"1.xml",False )
File.Copy2(job.GetInputStream, out)
out.Close
End If
j.Release
End Sub