Recent content by Chad

  1. C

    wkhtmltopdf Performance and Execution Issues in WebSpeed vs prowin32

    Thanks for your reply. The method to create the html file before hand is a simple COPY-LOB from a longchar to the file: Example code: DEFINE VARIABLE lcHtmlFile AS LONGCHAR NO-UNDO. DEFINE VARIABLE cCommand AS CHARACTER NO-UNDO. ASSIGN lcHtmlFile = "<html><head></head><body><p>Hello...
  2. C

    wkhtmltopdf Performance and Execution Issues in WebSpeed vs prowin32

    OEv11.7 / Windows 11 Hi all, I'm using wkhtmltopdf.exe from webSpeed to convert HTML files to PDFs. While everything works perfectly when run via prowin32.exe or _progres.exe. However, I’m hitting two key problems when executed inside a WebSpeed agent: Problem 1: Extremely Slow Execution in...
  3. C

    Question OEPDS Syntax Styling

    Hi there, When developing webspeed applications in the OEPDS Im finding the syntax styling to be incorrect. When I breakout of a line of webspeed code to add a reference to a database field the styling seems to render incorrectly (Please see attached image). It seems to read the period...
  4. C

    Merge pdf files

    Hi, Im wanting to save two existing pdf files into one. I am trying to use the pdf_inc library for this. I havent used it much but looking at the procedures I thought this may have worked. Has anyone done something similar that they can point me in the right direction? Thanks...
  5. C

    Query

    Remove the string each time you find it in the variable and count the number of times you remove the string def var lcFileContent as longchar no-undo. def var cStringToFind as character no-undo. def var iCount as integer no-undo. assign lcFileContent = "how many times can we find the 'an'...
  6. C

    Query

    I would COPY-LOB the contents of the file to a variable and then just use the INDEX() function to find the string in the variable
  7. C

    Incremental Df Of Databases That Cant Be Connected

    Thought as much... Thanks for your reply.
  8. C

    Incremental Df Of Databases That Cant Be Connected

    Hi there, I have a fellow developer who has made changes to the database schema of our application. We cannot connect the two databases to create an incremental df file to update the older database with the changes. If he supplies me with the full df file of his database, could I derive some...
  9. C

    Passing OCX control to DotNet

    Hi There, Did you ever find a solution to this issue? Thanks
  10. C

    SOAP Problem

    I am using the SAX writer to generate the xml fragments to insert into the SOAP wrapper that is generated by progress. If I were to insert the code you are suggesting my xml would look like: <SOAP-ENV:Body xmlns:s0="http://mywebservice.com/pcws.V1.0.0.1"...
  11. C

    SOAP Problem

    Hi Maxim, Thanks for you response, I have also tried this using SoapUI with the same result. If I use the code generated by progress then I have an unsuccessfull response, however if I add the missing namespace it works. As you say strange even though the <s0:ExecuteAction> is already...
  12. C

    SOAP Problem

    Its an external web service.
  13. C

    SOAP Problem

    Hi there, I seem to be almost there with a small web service application I have been attempting to develop. However, I seem to be having a problem with this final part: The request I am generating (which I have viewed using proSoapView): <SOAP-ENV:Envelope...
  14. C

    CD ROM Application

    Thanks for your help with this Francois
  15. C

    CD ROM Application

    Thank you :)
Back
Top