Search results

  1. P

    Answered Run non-existant program without error

    Hello guys! I wanted to ask if there's a way to run a program and that program ends up not existing and the program shows a message saying that BUT it doesn't break like the following code does: DEFINE VAR temp-hand AS WIDGET-HANDLE. DEFINE BUTTON make-btn LABEL "Make new button". DEFINE FRAME...
  2. P

    Error Error in Consuming Service (v11.3.3)

    Thank you Cecil! That worked like a charm! Have a great day!
  3. P

    Error Error in Consuming Service (v11.3.3)

    Hey there! Some weeks back, this site 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml' passed from "http" to "https" so I was tasked with fixing the original code so it would work in every client. I managed to do so, but i realised that the code wasn't compatible with some of the...
  4. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Okay i got a TEMPORARY fix. Apparently PROGRESS adds automatically the 'envelope' and 'body' to my request. but since it does that, it "destroys" what i want to send and makes it impossible(for now) to do it this way. So i did the following: DEFINE VARIABLE responseLCWSDL...
  5. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Apparently you were correct. I used a program to see what was being sent frmo the postman and what was being sent from progress and i got the following: POSTMAN <soapenv:Envelope xmlns:add="http://www.w3.org/2005/08/addressing" xmlns:qcom="urn:schemas-qad-com:xml-services:common"...
  6. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Hey again. I just tried it and it doesn't work. I get the same error. Got any other body u want me to try? I also wanted to ask if you know a way tro track the postman request so i could get the body of the request (the final one) that get's uses and compare it with the one going from this abl...
  7. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Hi there. I tried and it didn't work. I think i need the content that is in the body. Pls check the code again (the function). I talked with my superiors and I was able to share the postman request. See if it helps pls. And let me know what body do you want me to try, I'll do it and give fast...
  8. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Hi there! I have a SOAP request in my postman that works perfectly However, when I try to convert it to ABL/4GL code it doesn't work. I'm 100% doing something wrong but i can't seem to find it. I already talked to some colleagues of mine but nobody seems to find the problem. I used the...
  9. P

    Resolved DataSet on Class ERROR

    hey again. In case anyone happens to encounter this error, this is the resolution discovered by "Stefan Drissen" : FIELD CompanyNameTemp AS CHARACTER XML-NODE-NAME "CompanyName":U FIELD ProductVersionTemp AS CHARACTER XML-NODE-NAME "ProductVersion":U Apparently the Form class...
  10. P

    Resolved DataSet on Class ERROR

    Hello there! I used a progress tool to convert a xml file to a .i (temp-tables + dataset). After doing it, i tried reading a xml file with data and export it again to see if everything was as expected and it was. However, when i referenced that include in a class i get the following error...
  11. P

    Trigerring Progress 4GL Triggers from Java Data Update

    Hey Tom! Thanks for the answer. I decided on running (in java) a .p using proenv (by excuting it ('Runtime.getRuntime().exec()'). In that procedure I trigger the triggers i want. This seemed to be the simpler solution to this problem, which will also help in the future for other triggers I'll...
  12. P

    Trigerring Progress 4GL Triggers from Java Data Update

    Hello! I've been developing Java code with the purpose of creating an API to be used by my company clients. I reached a point where i need to create a POST and this particular POST is supposed to apply certain changes to a table. This table has some triggers defined in his table definition...
Back
Top