Migrate REST URLs
- Last Updated: January 23, 2026
- 2 minute read
- OpenEdge
- Version 12.8
- Documentation
The only difference between the classic OpenEdge AppServer and PAS for OpenEdge
regarding the URLs used to connect to and access OpenEdge REST and Data Object Services,
is allowing access to the default ROOT ABL web
application on PAS for OpenEdge.
For example, a URL to access an OpenEdge REST web service for the classic AppServer using the OE Web Server might be the following:
|
After migrating the same ABL code to the asbroker1WebAppl.war ABL web application on a PAS for OpenEdge instance, you would use this URL:
|
You could also rename the ABL web application to the file name of the original
REST web application for the classic AppServer (CustomerMaint.war), and use a URL almost identical to the original
(shown in the previous example), or after migrating the ABL code to the default ROOT ABL web application, you could use this URL:
|
Note that OpenEdge ABL does not have a native REST CONNECT( ) method at this time. However, you can test a REST connection
through a browser.
For more information about creating and connecting to both REST web services and Data Object Services, see the topics on these services in Develop ABL Services.