Search results

  1. T

    Using COLOR-TABLE causes a crash on Windows 11 22H2

    Hi Rob. I'm running 64-bit, and my ProCore files show the same thing - an access violation in prow.dll. To answer your question: there's no reason not to upgrade, and it's something that we will do in a server migration that will happen when we wrap up our current dev project. We'll go to...
  2. T

    Using COLOR-TABLE causes a crash on Windows 11 22H2

    Hi Rob, thanks for the suggestion. I was on the standard Windows 'light' theme by default and I have just tried 5-6 others with the same outcome (can't open certain smart windows in the Appbuilder, can't run r-coldlg.p, which is the sample procedure on the help page for the SYSTEM-DIALOG COLOR...
  3. T

    Progress to Sharepoint

    Hi Jayesh. I have code that does part of what you want - it returns the names of all the files in a given SharePoint site + folder, using SharePoint's REST API. Did you find your own solution?
  4. T

    Using COLOR-TABLE causes a crash on Windows 11 22H2

    Hi all, There's a known issue that causes Progress < 11.7.5 to crash on Windows 11 2H22: https://community.progress.com/s/article/set-color-causes-crash-on-windows-11-2h22 I'm seeing pretty much the same problem in my 11.6.4 system on W11 2H22 - I get a different C stack trace in the...
  5. T

    Cannot select database in query builder

    Hi all, I'm running Dev Studio 11.6.4, editing a .w file in the "ABL UI Designer" view. I pick a browse from the object palette and drop it onto the canvas. The query builder dialog appears as expected, but it won't let me pick a table from my second connected database (which is a temp-db...
  6. T

    Editing w-code in Developer Studio

    Hi all, * v11.6 on Windows * I've been using Progress's Eclipse-based offering for many years but - having worked on OERA / web service projects with no Progress UI until now - I have only recently started to edit .w files in that environment. It's a bit laborious compared to the original...
  7. T

    Question What is the best way to connect mysql db from Openedge Application running on Linux Server?

    Hi Wishwa, I haven't tried on Linux, so I can't say for sure... but the way I read that knowledgebase entry, it seems to be talking about getting an error if you try to run the Progress code on Linux. I was suggesting running the Progress code on Windows, hooking it up to a MySql instance that...
  8. T

    Question What is the best way to connect mysql db from Openedge Application running on Linux Server?

    You could just install MySql's ODBC driver - which is free - then you can access the database directly from the 4GL with code like this: def var chConnection as com-handle no-undo. def var chRecordset as com-handle no-undo. def var chCommand as com-handle no-undo. def var cCommand as char...
  9. T

    HTTP client holding onto connections?

    > Are you able to reproduce the error outside of PASOE? No, and that's the thing. My original problem is that after communicating with SharePoint from PASOE, Resource Monitor shows the thread that was instantiated for that task - which only takes a couple of seconds - just sitting there forever...
  10. T

    HTTP client holding onto connections?

    It's really not happy. I just ran with the cipher changes, and it crashed the _mproapsv process when I tried to connect to SharePoint. I tried it twice - same result both times. I see this in the log (I had to snip part of the stack trace to keep under the ProgressTalk message size limit) ...
  11. T

    HTTP client holding onto connections?

    Hi Cecil. I've added your cipher/protocol code into my code, but I haven't had a chance to test it yet. They way they configured PASOE here, there's only a single instance shared between test and live, so I have to pick my moment otherwise I mess things up for the users. I'll update the thread...
  12. T

    HTTP client holding onto connections?

    Hi all, In 11.6.4, I'm using the HTTP client to perform a number of operations in SharePoint via its REST API. The code is running on a Webspeed agent in PASOE. Monitoring the sessions using the Windows Resource Monitor, I see that a thread starts up and just stays in an active state and never...
  13. T

    Database buffer -B change slow downs QAD programs

    Are you explicitly setting the hash table size with the "-hash" broker parameter? I've seen systems where performance dipped when the buffer pool was made bigger and the hash table wasn't big enough for it. I'll spare you the detail unless we find out that you ARE sizing it manually... suffice...
  14. T

    Sharepoint REST API

    I don't have any Sharepoint doco locally - I'm just using what is available for the GetFolderByServerRelativeUrl API online. The upload is working successfully now, since I stored the JPEG - without encoding - in an OpenEdge.Core.Memptr object. Cheers, Tarby
  15. T

    Sharepoint REST API

    Sorted. Passed the memptr variable for the JPEG into an OpenEdge.Core.Memptr which I used as the request body.
  16. T

    Sharepoint REST API

    Hi all, Does anyone have experience with using the HTTP client to call REST APIs in SharePoint? I have some of the APIs working, but I'm struggling to upload a JPEG with GetFolderByServerRelativeUrl/files/add. I am converting the JPEG to BASE64 and adding it to the request payload, but it...
  17. T

    Apache HTTP server + Tomcat for WSA apps

    Thanks Stefan, Would you mind sharing with me what those two lines are? ;) I've done what I can from the Apache doco and am not there yet... it seems to be saying that I need to load the "mod_jk" connector, make several changes to httpd.conf, create a workers.properties file, and so on... TIA...
  18. T

    Apache HTTP server + Tomcat for WSA apps

    G'day folks, Further to my previous thread about reliability problems with my 10.2b app that uses the WSA inside Tomcat, I've been speaking to the developers of the client side of the app, and they have proposed a config where Apache HTTP server is put in front of Tomcat to receive the HTTP...
  19. T

    500 Internal Server Error w/Tomcat + WSA

    Hi all, I'm getting a lot of these "500 internal server error" messages back from Tomcat in my 10.2B app. The client is written in Sencha, and via Tomcat+WSA it runs code on a Progress Appserver. There seems to be no pattern to it... simple calls (not big, not containing any characters that...
  20. T

    Word Index and pattern matches

    You can use wildcards with the CONTAINS operator. Have you tried that?
Back
Top