Search results

  1. peterjudge

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    It almost looks like there _was_ a bug in the 11.7 code which did not write the correct POST line. But it's hard to tell without some more debugging (I know that's just a variation on 'it depends'). Which exact 11.7 are you seeing the "good" behaviour in?
  2. peterjudge

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    I would not have expected a behaviour change in this regard. There are some internal changes to the data structures used (and obviously other changes for various things) but the code that writes the start line URL has not changed between 11.7 and 12.8 as far as I can tell. // In...
  3. peterjudge

    11.7 vs. 12.8 OpenEdge.Net.HTTP client via proxy

    The CONNECT request is (only) sent when proxying over https, so you should be seeing it in your case. You are not going to see that request written into the request and response txt files (or rather, they will be overwritten), but if you set the LOG-MANAGER LOGGING-LEVEL to 5 then you will see...
  4. peterjudge

    Progress Developer Studio: 11.7 to 12.8

    The PDSOE versions will be the OpenEdge version. So for 12.8 you will have version 12.8. The Eclipse version is whatever it is. You will need to get the installer from Progress' ESD site .
  5. peterjudge

    Question Performance question on a tool library

    This is because the static code is loaded once per session and you cannot unload or force a reload. When you are testing, I would strongly recommend that you use a separate session/shortcut. That way you know that you are working on the most recent code. If you follow @Osborne 's suggestion...
  6. peterjudge

    Generate REST Endpoint Issue

    There is a setting in the project settings that relates to "Modules" that I think may impact this path. Make sure that the AppServer folder is selected.
  7. peterjudge

    Syntax Check: Require Full Names and Field Qualifiers

    The Procedure Editor will use whatever settings the session is using. So you could add a file using the command line (Progress Documentation)
  8. peterjudge

    Syntax Check: Require Full Names and Field Qualifiers

    Check syntax does a compile behind the scenes :)
  9. peterjudge

    Question Code documentation

    Ah, ok. The code documentation procegrams will include INPUT/INPUT-OUTPUT/OUTPUT as well as the datatype of the parameters. This is not done by the code documentation tools. They will look at the comments on the procedure and generate the documentation based on that.
  10. peterjudge

    Question Code documentation

    You can automate which programs call which programs using the COMPILE XREF functionality. The compile XREF can tell you who calls who, as well as the parameters. I'm not sure what you are looking for here. For this, as well as probably the example of calling, you are going to want to look at...
  11. peterjudge

    Resolved Secure Socket Layer (SSL) failure

    This often means that you don't have the root CA certificate. You can see what that is using your browser (usually via clicking on the lock next to the URL bar). In this case, it's Go Daddy Root Certificate Authority - G2 . You should download and install that in the certs dir.
  12. peterjudge

    Question How to use java classes in 4gl code?

    It's a hallucination. You can use an openclient (java or .NET) to call ABL on an AppServer. You can call .NET classes from ABL clients (over the "bridge"). You can call java classes that are exposed via something like the IKVM in .NET. But you cannot call java classes directly in ABL. In 12.8...
  13. peterjudge

    OE Studio

    If you have the developer tools license you have access to both Appbuilder and PDSOE (Progress Developer Studio for OpenEdge, fka OE Architect). I'd assume this is the "OE Studio" your partner is referring to. You should have access to it - it's been in the OE product for many releases/years...
  14. peterjudge

    Resolved PASOE ABL Service not getting published from Developer Studio

    IMO PDSOE is notoriously flaky when publishing stuff. Some people have the correctly-coloured thumb to be able to publish consistently; I don't. If you're adding a webhandler to an 11.7 PASOE instance, and have access to the server, I would just add the handler line to conf/openedge.properties...
  15. peterjudge

    Question Command to stop PAS

    In addition to what @Stefan says, you will also replace your wtbman call with tcman (or pasman).
  16. peterjudge

    WSA not available anymore Progress 12.2

    The WSA has moved into PASOE in OE 12.0+ . The "Classic" AppServer was removed from OpenEdge in 12.0 and replaced by PASOE. PASOE is also a Tomcat server, and you can deploy SOAP services to it using the same artifacts as for the WSA.
  17. peterjudge

    Question End Progress operation from bat file

    Why? Are there any significant differences between the executables or environments? The OP's command line should use the -b switch, for sure.
  18. peterjudge

    Question Is Tomcat necessary for PASOE?

    No. OE Explorer is completely separate from PASOE. Not sure why you would be seeing Tomcat login info . What URL are you requesting?
  19. peterjudge

    Question Is Tomcat necessary for PASOE?

    Shortest answer: yes. Longer answer: PASOE *is* a Tomcat install. So when you create what's called an instance, you are using a version of Tomcat that's installed together with OpenEdge. You do not need a separate install of Tomcat.
  20. peterjudge

    Question Using TRANSACTION to simulate real execution

    The AVM will undo any transactions that were started during that giant DO TRANSACTION block. You can be 100% of that .... Progress has had 40 years of practice making sure that this works as expected. There are other non-transaction things you can do like read/write files to disk, make...
Back
Top