Search results

  1. JamesBowen

    Scroll Bars in a window's frame (from v9.1e)

    I'm not saying this is the answer, but it might point you in the right direction. Place this code in the MAIN-BLOCK after the "RUN enable_UI.": Frame DEFAULT-FRAME:VIRTUAL-WIDTH-PIXELS = C-WIN:Width-pixels - System.Windows.Forms.SystemInformation:BorderSize:Width. Frame...
  2. JamesBowen

    Progress Instant Messaging Service

    I've toyed around with the idea of having a real-time messaging in a GUI App using MQTT. But, I lost interest due to lack of business requirement and really wanted to use an opensource .NET assembly the that had done all the hard work for me But, unfortunately due to the lack of multi-threading...
  3. JamesBowen

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

    My mistake... I was using the 11.7 code. The "WriteStartLine" override method worked! BTW.. I also try using HAR tracing and crashed when output the when connecting to a proxy server. Separate issue to this.
  4. JamesBowen

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

    This is my code and I think I've followed your instructions, but unfortunately I getting this error (See Bellow). /*------------------------------------------------------------------------ File : DefaultRequestFilterOverride Purpose : Syntax : Description ...
  5. 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.
  6. 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...
  7. 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.
  8. 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...
  9. 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.
  10. 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...
  11. JamesBowen

    Creating Cyrillic file names

    I'm not 100%, but try adding a client startup parameter -cpstream UTF-8 -cpinternal UTF-8.
  12. 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...
  13. 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...
  14. 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
  15. 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...
  16. 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...
  17. JamesBowen

    localhost:9091 doesnt work

    run cmd in administrator mode and user "netstat -ab" and see what ports are open.
  18. 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...
  19. 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...
  20. 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...
Back
Top