Search results

  1. A

    How to use font after creating it at runtime

    Do you know how to use .ini file to set fonts in it? When you start your progress session, you can use -ini startup parameter and reference the xxxxx.ini file. Checkout below link. https://docs.progress.com/bundle/openedge-install-117/page/fonts.html
  2. A

    OE Studio / GitHub integration

    We use Azure to host out openedge repos. These projects are cloned using git bash. We do use Progress development studio (PDS) with egit plugin (4.9.0.xxxx) in progress version 11.7. Should work with 12.x I guess. Once you install plug-in, you have to follow some steps as mentioned in below...
  3. A

    PAS not running

    Progress Version? OS? Do you have any startup procedure which run when you start PAS. There must be some error in pasname.agent.log file?
  4. A

    Error SOAP - POSTMAN to ABL/4GL CODE

    Body with content below should work (high level guess). this might need a small tweaks to handle the soap header part. You can spend few hours to go through this link where you can find many examples where you can consume SOAP webservices from ABL with and without headers.
  5. A

    Error SOAP - POSTMAN to ABL/4GL CODE

    Error 11506 you receive is all about SOAP-ENVELOPE and SOAP-BODY in the request. for more information check this out In your code example above, it's unclear what are you copying from postman (whether SOAP-ENVELOPE and SOAP-BODY also being copied?). if yes, Remove them and give a another try.
  6. A

    Java client for Progress 9.1e AppServer

    Using ProxyGen (Progress Tool to generate proxies file from Progress .r code for Java / .Net OpenClient) you can achieve this. (Below steps are copied from GitHub - labai/opa: OPA - Openedge Procedure Adapter ) - You might get some working example here too. To call procedures from Java...
  7. A

    Question What version of 11.7 for PASOE

    Thanks for your response @Cringer . (I will keep it in mind to have separate thread instead of hijacking original thread :) ) There are no constraint for us to move to 11.7.12. Because of long term support we never thought of moving from 11.7.4 to any other later version on 11.7.x. I will...
  8. A

    Question What version of 11.7 for PASOE

    Hi, Thanks for above pointers, Based on it, I would like to know more about recommending 11.7.12. We have 4 OE based applications (3 GUI and 1 in webspeed). Progress current Version - 11.7.4 OS - Windows Sever 2016 Our business has taken a decision to implement PASOE for GUI based...
  9. A

    Error Error 8030

    Connect statement in Abc.p will not connect to database in compile time. Connection to db will be done in run time when you use connect statement. That’s a reason you are getting unknown and ambiguous table table itemcust. Connect db whichever is required before you start compiling both...
  10. A

    Error Error 8030

    Your temp-table has different number of fields in different piece of code. Compilation of both involved procedures will fix this issue. Follow below post for more information https://www.progresstalk.com/threads/progress-error.122222/
  11. A

    enableSiteReplication target Issue

    Take incremental backup of source db after you enable the replication. Restore it on target and then try enablesitereplication target on target db.
  12. A

    How to remove duplicate values in a string

    This should help :) /********** Option 1 ************/ DEFINE VARIABLE cList AS CHARACTER NO-UNDO INIT "a,b,c,d,a,b,c,d". DEFINE TEMP-TABLE ttUnique FIELDS Listitem AS CHAR. FUNCTION getUniqueList RETURN CHAR (INPUT cList AS CHAR) FORWARD. MESSAGE "Option 1 : " SKIP...
  13. A

    Consuming WebServices in combination with oAuth2.0

    Hi, I did some digging around .NET classes and finally make it work. Below is the modified source code where it fetch windows store certificate, connect to secure https wsdl, create xml, add certificate to it and call webservice. Thanks a ton @RealHeavyDude for code you shared in 2018 :)...
  14. A

    List of program run in batch mode

    You will find the same trace parameters in above shared linked. Just to make it handy add below in batch startup pf file (make sure you do this Dev / test environment). As trace log files grow faster. Use below in .pf file -clientlog c:\temp\4gltrace.log -logginglevel 4 -logentrytypes...
  15. A

    Consuming WebServices in combination with oAuth2.0

    Hi, How can we write xml body to request? I used your first program and tried it but getting error "System.Net.ProtocolViolationException: You must write ContentLength bytes to the request stream before calling [Begin]GetResponse." Basically stuck at how can we use .NET bytes.length in...
  16. A

    Answered Need Reasoning For Below Output (code Attached)

    Thanks a ton Tom, This is such a great explanation. I was seeking a reason for it and you gave me proper solution :)
  17. A

    Answered Need Reasoning For Below Output (code Attached)

    Thanks for your response. After your reply, I did search how progress deals with null value and found few KB articles. My problem was, I was getting few null values in temp table and while sending this values to HTML file after adding null to character strings, It was making whole HTML file...
  18. A

    Answered Need Reasoning For Below Output (code Attached)

    Hello There, Below code show 2 different output for input date. If I pass blank date to function and concatenate the output of funstion to another string, it returns ?. Where as if I simply concatenate 1 string with character "?" it shows the output. Can someone please explain the reason...
  19. A

    Error AdminServer failed to start

    User proadsv -q -port 20931 to know the status of admin server? also try to start it using proadsv -start -port 20931, You may also provide -adminport number while starting it. Or better paste your error here. That would help to find out the where exactly it is failing.
Top