One of the more elegant aspects of EGL is its use of resource bindings, each of which is a value that describes how to access a service or database. The bindings are maintained in an EGL deployment descriptor, which is external to your logic and provides the access details when you are developing or deploying your application.
This use of the deployment descriptor is safe and flexible. You can change the details stored there and then redeploy the code without changing the access logic and without spending the time to regenerate output.
Although you can run the deployed service during an EGL debugging session, the EGL debugger does not step into the service.
In this case, an internal Test Server enables you to debug the code, and the URI is useful only at development time. The Test Server is described here: EGL test server.
If the purpose of a resource binding is to specify the connection used for database access, the definition is called a database binding. You can place the binding in the EGL deployment descriptor, but can include the connection information directly in your code.
For further details, see EGL support for relational databases.