Search results

  1. A

    Question about Temp-table BLOB field containing MEMPTR => memory Clean Up ?

    Ok thanks. So I'll go with EMPTY TEMP-TABLE ttChunck.
  2. A

    Question about Temp-table BLOB field containing MEMPTR => memory Clean Up ?

    Ok thanks. So i need to delete the memptr once stored in the temp-table. What can I do with the BLOB field to ensure that its size is properly set to 0 (like the memptr). Is deleting the record enough to ensure that the BLOB is also deleted (cleaned up from memory) as well ? Thanks in advance.
  3. A

    Question about Temp-table BLOB field containing MEMPTR => memory Clean Up ?

    Hello, I have a program in which I have a temp-table in which I store some MEMPTR variable, like this (simplified code) : DEFINE TEMP-TABLE tt-Chunk NO-UNDO FIELD Order AS INTEGER FIELD Data AS BLOB FIELD Size AS INT64 INDEX i IS PRIMARY UNIQUE fi-Order. DEFINE VARIABLE mData AS...
  4. A

    Compiling a cls USING itself

    Hi, The code of the cls USING itself is coming from Progress : OpenEdge.Net.pl, URI.cls I was trying to compile the sources code of the OpenEdge.Net library of OpenEdge 11.7 under 11.5 (I need to use OpenEdge.Net under 11.5 but there are bugs fixed in 11.7 but can not migrate to 11.7...
  5. A

    Compiling a cls USING itself

    Hi, I have an issue felated to compilation, classes and USING keyword / packages. I'm trying to compile a class located in a sub-directory. This class contains a "USING" phrase referencing to itself : /*testClasss.cls*/ USING testCompileUsing.Classes.testClass. CLASS testClass : END...
  6. A

    OpenEdge.Net.pl v11.5.1 Error 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR'

    Hi, I've tried to follow the WorkAround as per described in Defect PSC00337135 (put the attached "ClientSocketResponseWriter.cls" before OpenEdge.Net in my PROPATH) : it seems that the issue still happens, but less often (1 time out of 50), which is still not acceptable. It seems that many...
  7. A

    OpenEdge.Net.pl v11.5.1 Error 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR'

    Hi, No, the payload (a plain text Json message base-64 encoded) is less than 1 Mb (4 Kb). The ContentLength of the oResponse object is of 1229.
  8. A

    OpenEdge.Net.pl v11.5.1 Error 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR'

    Fixed for the code formatting, hope it is better now. I cannot get the Response message on my end : I am receiving an "oResponse" object (from OpenEdge.pl Execute () method) which is invalid, so at this point I can't do anything, excepts handling the error. I will see with the guys managing the...
  9. A

    OpenEdge.Net.pl v11.5.1 Error 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR'

    Hi, I am using OpenEdge.Net.pl (Progress v11.5.1.006) for sending requests (base64-encoded Json into a SOAP envelopp) and getting randomly, from time to time, the following error : 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR', line '1', column '0', message 'invalid...
  10. A

    Question Setting Fgcolor Attribute Not Working Under Windows 7 Basic Theme

    Hi, Will be there any other impact if we delete (or rename) this .manifest file ? Looking forward on this, I've learned that there is a disableTheming option for the .manisfest which can be added used like this : <disableTheming>true</disableTheming> But untill now, I did not succeed to use it...
  11. A

    Question Setting Fgcolor Attribute Not Working Under Windows 7 Basic Theme

    Hi, I have an issue while using some GUI control in Progress I have a radio-set widget in , for which I would like to change the font color (rdo:FGCOLOR). Here is an example of source code of what we try to achieve DEFINE VARIABLE RDO-option AS WIDGET-HANDLE. DEFINE VARIABLE m-status...
  12. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    No, I would like to have in the same screen / container (so whatever possible : ABL Window, ABL Dialog, .Net Form) both ABL widgets and .Net widgets/controls. Quite the same as of the OCX in the past, but here using .Net (and taking account of the constraints of .Net). (sorry, in my previous...
  13. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Ok, thanks. In my case, the existing .w screen is already included in an other bigger .w screen (a "container"), so maybe it can get more tricky than expected if I only replace the widget it self :/ Is it possible to mix ABL widget + ABL widget together in a .Net Form ? By replacing ABL...
  14. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Ok. I'll give up the SmartObject option. Don't want to go for an unspported feature for future development. Maybe .Net is the best / more future-proof option ? Is it possible to integrate a .Net widget in an existing classic ABL .w ? (OpenEdge 11.5.1, I can work with OpenEdge Developer Studio as...
  15. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Thanks, I was thinking SmartFrame was a container to accomodate / integrate SmartObject within classic Window / Dialog screen. No I've tried, and finally achieved to put the Smart Object inside my "normal" Dialog screen : I've added the 2 includes form ADM2, the adm-create-objects procedure...
  16. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Ok. I'd take a look on the differences between an empty "SmartDialog" and an empty "Dialog" source codes generated by the AppBuilder, and yes I see this adm-create-objects plus many pre-processor constants and includes... It seems to be a lot to add into the standard dialog, which more look...
  17. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Hi, I would like to know if it is possible to insert a SmartObject into a a "container" which is not "smart". In my case I would like to insert the pure4gltv SmartObject into a dialog (not a smartWindow). The dialog (a screen designed as a Dialog-Box) is an already existing screen. It...
  18. A

    Question Example Of Call To Webservice Using Openedge.net Library

    Hi, I have just tried your example (just modified a little bit to accomodates with my Progress version) : I am getting error 5482 just as follow (with the stack trace) I am not sure about what to put in oRequestBody = NEW String(' '). Whatever I put here I get ane rror (if the string is...
  19. A

    Question Example Of Call To Webservice Using Openedge.net Library

    Hi, Thanks, but is it possible to have a "real" URL pointing to a working Web Service ? Each examples I have found so far are with dummy WebService, or URL which are no more responding. Thanks in advance.
  20. A

    Question Example Of Call To Webservice Using Openedge.net Library

    Hi, I will begin with a development of a program which will have to call a WebService (never worked with WebService before). I am looking for some simple example of working code that will call an existing WebService (can be anything) via the OpenEdge.Net library. Basically, I need to call the...
Top