Recent content by Marco Mendoza

  1. Marco Mendoza

    Resolved Secure Socket Layer (SSL) failure

    Solved: The issue was the file permission; I set the certs files to chmod 777 and the webservice works fine.
  2. Marco Mendoza

    Resolved Secure Socket Layer (SSL) failure

    This are the certs
  3. Marco Mendoza

    Resolved Secure Socket Layer (SSL) failure

    That is the weird thing, as you can see on the certs directory, there are 3 certs, I exported and Installed the 3 levels of certs ...
  4. Marco Mendoza

    Resolved Secure Socket Layer (SSL) failure

    Hello all, OpenEdge Release 11.6.3 AIX 7100-03-05-1524 I get error loading this webservice, USING OpenEdge.Net.HTTP.*. USING OpenEdge.Net.URI. USING Progress.Json.ObjectModel.*. DEFINE VARIABLE oRequest AS IHttpRequest NO-UNDO. DEFINE VARIABLE oResponse AS IHttpResponse NO-UNDO. oRequest =...
  5. Marco Mendoza

    test

    test .... I can't post on Development forum ....
  6. Marco Mendoza

    Question CIM function

    There are not F5 key emulation on CIM loads. But in some QAD Maintenance options, when "batchrun" variable is set to TRUE, a new field is enabled in the screen, if this field is set to "X", the system will prompt for delete the record; I repeat, just in some options.
  7. Marco Mendoza

    Question CIM function

    There are not F5 key emulation on CIM loads. But in some QAD Maintenance options, when "batchrun" variable is set to TRUE, a new field is enabled in the screen, if this field is set to "X", the system will prompt for delete the record; I repeat, just in some options.
  8. Marco Mendoza

    SOAP error with Content-type

    Compilation error: Could not locate element 'Encoding" in the class 'OpenEdge.Core.String'. (12927)
  9. Marco Mendoza

    SOAP error with Content-type

    I get a Bad Request error message, oRequest = RequestBuilder:Post(oUri, oRequestBody) /* :ContentType('text/xml; charset=utf-8') : ContentType('application/soap+xml; charset=utf-8') */ :AcceptAll()...
  10. Marco Mendoza

    How to release record locks in a repeat block inside a do transaction block

    What kind of Errors do yo expect for UNDO the Transaction? Data errors or connection errors? I would try to validate everything before the data update, and if not error, update data on small transactions; this is a batch program so the probability for session disconnection meanwhile is updating...
  11. Marco Mendoza

    SOAP error with Content-type

    What I mean is, With this ":ContentType('text/xml; charset=utf-8')" and this ":ContentType('text/xml')" the error is: "Cannot process the message because the content type 'text/xml; charset="ISO-8859-1"' was not the expected type 'text/xml; charset=utf-8'." The charset is changed to...
  12. Marco Mendoza

    SOAP error with Content-type

    :( It is something with 11.6, With your code I still get: oRequest:ContentType 415 Cannot process the message because the content type 'text/xml; charset="ISO-8859-1"' was not the expected type 'text/xml; charset=utf-8'. Handle no válido. No se inicializó o apunta a un objeto eliminado. (3135)
  13. Marco Mendoza

    SOAP error with Content-type

    I think the issue is not the quote, it is the type "application/soap+xml;". Do you know how can I change it with an instruction similar to oHeader:SetParameterValue('charset', 'utf-8') ? I tried with oHeader:SetValue("text/xml") but do not compile.
  14. Marco Mendoza

    SOAP error with Content-type

    Interesting .... I change to: oRequest = RequestBuilder:Post(oUri, oRequestBody) :ContentType('application/soap+xml; charset=utf-8') :AcceptAll() :AddHeader('SOAPAction', 'http://tempuri.org/IConsultaCFDIService/Consulta')...
  15. Marco Mendoza

    SOAP error with Content-type

    I did this but I get the same error, oRequest = RequestBuilder:Post(oUri, oRequestBody) :ContentType('text/xml; charset=utf-8') :AcceptAll() :AddHeader('SOAPAction', 'http://tempuri.org/IConsultaCFDIService/Consulta')...
Back
Top