Http2Util & Sax Parser

CharlesIPTI

Active Member
Licensed User
Longtime User
So how does this work now with Http2

B4X:
Sub JobDone (Job As HttpJob)


Dim iStream As InputStream
Parser.initialize
   If Job.Success = True Then
      Select Job.JobName
         Case "Job1"         
         iStream = Job.GetInputStream(SomeDiddilyDanceGoesHere)
'    Old version uses complete URL of specific web service call          
'         (PostGetCartState)
            Parser.Parse(iStream, "Parser")               
                     
         Case "Job2"
 
Top