Recent content by Jochen0911

  1. J

    App Server not starting

    Yes! Thank you! I can start OE Explorer. I can go further!
  2. J

    App Server not starting

    It doesn´t help, because all my customers are still using database version what is on 10.2B. It es not possible for me, to convert the databases to higher progress version. There will be also differences to the original databases and by each update i must convert the database. That will not be...
  3. J

    App Server not starting

    Hello, i have the same problem. I have a new WIN 11 laptop and must install Progress 10.2b08. There is no choice to upgrade, because the databases only work with 10.2b. The adminservice shows running. http://localhost:9090/ shows not reachable. There is a hs_err_pid9932.log file. (Attached)...
  4. J

    Dataset Relation Position possible?

    Ok, but ein don´t understand the logic. I did try I added to my both Temp-Tables. But i get compile error My temp-table fields in tt_artikel starts with I don´t understand, what´s the mistake.
  5. J

    Dataset Relation Position possible?

    Hello, i have a DS with data-relations example data-relation drLME for tt_artikel{&ippSuffix},tt_lme{&ippSuffix} relation-fields (artikel,artikel) nested Is it possible to say the node of tt_lme begins after position xyz, so after a special field in...
  6. J

    Print to special printer tray with List & Label and Win API

    /* WIN API */ PROCEDURE OpenPrinterA EXTERNAL "winspool.drv" : DEFINE INPUT PARAMETER pPrinterName AS CHARACTER. DEFINE OUTPUT PARAMETER phPrinter AS LONG. DEFINE INPUT PARAMETER pDefault AS LONG. DEFINE RETURN PARAMETER nullpointer AS LONG. END PROCEDURE. PROCEDURE...
  7. J

    Print to special printer tray with List & Label and Win API

    Hi, i print labels with List & Label. Sample: run LlSetPrinterInPrinterFile (output nRet, hJob, {&LL_PROJECT_LABEL}, gcLabel, -1, gcDrucker, 0). The target is, to say the printer, to print with tray 1 or 2 or ... The documentation described, it´s possible with the last parameter. In my...
  8. J

    SOAP Webservice Progress Error

    Hello, sample for SoapUI. That works and the 'values' construct received by target successful. The interesting part is that array construct on c#. After running progress utility, i have to implemnt progress code like I get the response 'succeeded'. The request arrived the target. But the...
  9. J

    SOAP Webservice Progress Error

    Hi, thank you for answering! I have not the experience about webservices with progress. I don´t know this tool, but i got help from another progress developer. In the error message it shows the datatype 'dictionary 2 values'. It is a special array / object of c# or java. I know that he was...
  10. J

    SOAP Webservice Progress Error

    I find out, that something went wrong with the xml. Now when i start my script, it generate <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
  11. J

    SOAP Webservice Progress Error

    Hello, i want to send a Dataset to an webservice with {y/gateway/incl/yg_ano01.pds &ippNoReferenceOnlySwitch = yes} {call dsGetAngebot fillDataset}. lvh_ds = dataset dsGetAngebot:handle. lvh_ds:write-xml ('file':U,'C:/temp/dsGetAngebot.xml':U,true). lvh_ds:write-xml ('longchar':U, /*...
  12. J

    Remove Record from Query Buffer without delete record

    I ´am looking forward :cool: The code snippet shows only the important parts to build query with subquerys. At the bottom you see to build the buffers for the results. I support only two subqueries. In the project i can avoid the subqueries, when it´s a 'can-find'. That means i have the main...
  13. J

    Remove Record from Query Buffer without delete record

    Hi, is there a possibility to use query-buffer and delete buffer records without delete the physical records? I want to filter my dynamic result in query buffer. query don´t support 'can-find'. I want to go through my records in query buffer, execute a can-find of buffer record somewhere...
  14. J

    Transfer Object / File / Record without saving to harddisc

    Hello, I wrote a webservice and receive a dataset. This dataset contains a temp-table. The app server runs on a linux machine and receive data from a webservice. I want to call an external queue on a windows machine. I cannot pass the dataset or the temp-table as a parameter, because, i cannot...
  15. J

    Dataset Read-xml Buffer 1 Is Empty

    Thank you for your hints! ABL Dojo works also fine for me. So i searched further form my problem. I´am working in a framework. When i rename the XML-Node 'Auftrag' to 'ttAuftrag', it worked and the error is solved.
Top