headers

  1. M

    Android Question Log RAW HTTP request

    Hi everyone I'm using OkHttpUtils2 to perform some HTTP requests but I need to debug phone-side because the server crashes and I have no way to see why. So I need to log ALL the request content that the phone is sending: headers, body, everything. thanks in advance
  2. B

    B4J Question SOAP Error when Passing Authorization Header

    I am trying to make some SOAP API calls and am running into issues with authorization. The API requires you pass a basic authentication header. If I use the following: Dim job1 As HttpJob Dim SoapXML As String= $"<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"...
  3. Pedro Caldeira

    B4J Question HTTP response Headers in Non Ui applications

    How can I get the headers from the response in a non-ui application ? I recall that Erel provided a code to replace in the Httputils source to expose the headers, but how can i do it in non UI app ? code provided by Erel Sub hc_ResponseSuccess (Response As HttpResponse, TaskId As Int) Dim...
  4. Pedro Caldeira

    B4J Question Http poststring with headers

    I am trying to send a string with a post method and some headers. Non Ui application code below Dim ListaBill As List ListaBill.Initialize ListaBill.Add("<?xml version='1.0'?>") ListaBill.Add("<methodCall>") ListaBill.Add("<methodName>RequestServer.RequestBill</methodName>")...
Top