Search results

  1. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    11.7.20.0.2288 was the version that was working. It almost need to have an override option to not use absolute URI when connecting via a proxy Server.
  2. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    This is very odd. I've gone through the different revisions of OpenEdge.Net.HTTP.Filter.Payload.DefaultRequestFilter on GitHub and you are correct. There has been no changes in the logic of when to output a absolute URI vs. a relative URI when connecting via a proxy server. So, I'm not sure...
  3. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    Thanks Peter. Would you a agree that it is a change in behavior between 11.7 and 12.8 when a client connects via a proxy server.
  4. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    I've found this. HTTP/1.1: Request And by my interpretation, It seems that OE 12.8 is working according the RFC. If you make a request via a proxy server the URI can be an absolute URI. Servers MUST accept the absolute URI form in requests, even though HTTP/1.1 clients will only generate them...
  5. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    Thanks, I'm now eyeballs deep looking at GitHub Repos. I'm using the same TLS 1.2 and the same ciphers.
  6. JamesBowen

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    I have existing code that has been working as expected on OE11.7. The code makes a simple POST request via a proxy server. Since upgrading to 12.8 the POST request is different and responds with a 404 http error code. OE 11.7 via a proxy, returns HTTP 200 POST /gateway/oauth/token HTTP/1.1...
  7. JamesBowen

    Creating Cyrillic file names

    I'm not 100%, but try adding a client startup parameter -cpstream UTF-8 -cpinternal UTF-8.
  8. JamesBowen

    If I have a Json array, how can I find number of objects inside that array?

    Simplified the code sample. /* Include the necessary namespace for JsonArray */ USING Progress.Json.ObjectModel.*. DEFINE VARIABLE myParser AS ObjectModelParser NO-UNDO. DEFINE VARIABLE oJsonArray AS JsonArray NO-UNDO. DEFINE VARIABLE iArrayLength AS INTEGER NO-UNDO. DEFINE VARIABLE...
  9. JamesBowen

    If I have a Json array, how can I find number of objects inside that array?

    /* Include the necessary namespace for JsonArray */ USING Progress.Json.ObjectModel.*. DEFINE TEMP-TABLE ttFruit FIELD fruit AS CHARACTER . DEFINE VARIABLE cCharExtent AS character NO-UNDO extent 4 INITIAL ["Apple","Banana","Cherry","Date"]. DEFINE VARIABLE oJsonArray AS JsonArray...
  10. JamesBowen

    Export To CIM with UTF-8

    Output the file in batch mode (or via an AppServer) and and have the following client start up parameters. -noutf8warning -cpstream UTF-8 -cpinternal UTF-8
  11. JamesBowen

    Dynamic Object Created in Wrong Window

    Are the put-shared-value & get-shared-value procedure located in a persistent procedure? I believe that I can re-produce the issue that you are experiencing. I think it's how you are persistently storing the last known widget handle in the super procedure that is causing you the issue. I'm...
  12. JamesBowen

    Dynamic Object Created in Wrong Window

    I've not tested it, but try this: ... RUN put-shared-value("CUR-STATUS-MSG-HANDLE", STRING(l-wh)). END. /* of "IF NOT VALID-HANDLE(l-wh)" */ ELSE ASSIGN l-wh:SCREEN-VALUE = p-text l-wh:FRAME = p-frame-wh // Reaffirm the frame attribute if it's changed or not...
  13. JamesBowen

    localhost:9091 doesnt work

    run cmd in administrator mode and user "netstat -ab" and see what ports are open.
  14. JamesBowen

    Question TAPI

    Thinking outside the box. Does the PBX system that you have a HTTP callback/webhook option? If so, you can then use it in combination of PASOE. I've a had a quick look a the TAPI documentation and its a midfield of information. The only issue you might face is a continuing blocking process...
  15. JamesBowen

    Question output-http-header("status","302"). Not working as expected.

    OE 11.7.20 Windows 64bit. I'm a little bit late to the party but I'm slowly dipping my toe in my migrating existing classic WebSpeed code over to PASOE. The issue I'm having is that output header setting the http status to 302 is not working as expected I have found the knowledge base article...
  16. JamesBowen

    Question YAML/OpenAPI file generation.

    I'm reopening this thread, because I though I saw a presentation about new features of 12.8 that it can now create YAML files. Only issue is that I can't remember where I saw this presentation (either as powerpoint or youtube). Can anyone confirm that 12.8 now supports the creation of YAML...
  17. JamesBowen

    Connecting to Virtual Machine from local PC

    Is the Azure firewall open for port 4001?
  18. JamesBowen

    CBOR Decoding and WebAuthn/Passkey

    No, I have not seen this spring add-on. I would not know how to incorporate it in with open edge.
  19. JamesBowen

    CBOR Decoding and WebAuthn/Passkey

    I'm scoping out the prospect of implementing WebAuth into PASOE web transport. I can't see any existing implementation of this in OpenEdge and it seem that the SPRING Tomcat security framework is not able to handle WebAuthn. So, I've started going down the road of trying to "Roll-your-own"...
  20. JamesBowen

    Comment 12.8.x Developer Studio help unsalable

    Shame that there is not plans to fix it.
Back
Top