What is the deployment URL of a Web Logic Server 11g app?

0

If I remember correctly, I was able to access it in the past:

localhost: 7001 / producer / NAME_of_MI_APP

but now I can not pick up any app that I deploy to the server.

The application is deployed without errors but for more than I try URLs I can not access the app.

    
asked by Ricardo Gabriel 31.10.2017 в 03:55
source

1 answer

0

By default, in any J2EE container (Tomcat, JBoss, WebLogic, Websphere) running in local, the URL of the application is:

localhost:<puerto>/<nombre_aplicacion>

The port may vary, Tomcat uses the default 8080 but it is somewhat configurable in the file server.xml

    
answered by 31.10.2017 / 14:02
source