[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: How to Log an HTTPRequest Object Created Using RequestBuilder Class

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
For requests, you can follow the approach we use to serialize requests for passing to the server: github.com/.../ABLSocketLibrary.cls . Note that the will put the request into a ByteBucket (basically a MEMPTR). I would store a BLOB and not a CLOB since there are likely to be cases where you have null bytes in the payload (images etc). You'll have to write your own for responses (at the moment). The easiest way might be to add data recieved event to the socket, so that you'll get the data as it comes off the socket. This is untested though so YMMV.

Continue reading...
 
Status
Not open for further replies.
Back
Top