1

I have deployed a java web application jar file on weblogic 10.3. But I'm unsure how to access the application in browser. I have the path to my web app as "/testapp/home.do" Can someone tell me what port is used by weblogic apps. Where can I check the port number info,which file?

When deployed on tomcat, i use "localhost:8080/testapp/home.do" I'm looking for something similar for weblogic

Thanks in advance.

devwebcl
  • 2,866
  • 3
  • 27
  • 46
user777777
  • 228
  • 4
  • 25

2 Answers2

2

You can use the Weblogic Administration Console i.e.

Deployments => Click on theApp => Testing Tab => Default URL in the table displayed....

mkane
  • 880
  • 9
  • 16
1

As default, WebLogic Server uses the port 7001. You can take a look at the ${DOMAIN_HOME}/config/config/xml file and see what is your server port.

devwebcl
  • 2,866
  • 3
  • 27
  • 46
Emmanuel Collin
  • 2,556
  • 2
  • 10
  • 17