user1539343
user1539343

Reputation: 1669

Web application is seemingly not running when deployed in websphere

I have a war file which I deployed and ran in tomcat. Then I deployed it in websphere from admin console. The status of the webapplication is seen as started along with the built-in web applications such as "ivtApp", "query", etc. Now from this link:

Heading

http://pic.dhe.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=%2Fcom.ibm.websphere.nd.doc%2Finfo%2Fae%2Fae%2Frins_portnumber.html

It looks like the port number for web application is 9080 for http. I tried to run the application using the link:

http://{localhost}:9080/spring3HibernateMaven/index

(I am using "{" because this website didn't allow typing localhost)

the context root being spring3HibernateMaven. And I get page not found error in the browser. So I thought there must be something wrong with my web application. Hence I tried to run their web application:

http://{localhost}:9080/ivtApp

Which gives the same error. Even

http://{localhost}:9080/

gives the same error. I assume it should show something for this url as is shown from tomcat.

So how can I run the/any web application in websphere? FYI, I downloaded the latest version of websphere from their website.

Thanks

Upvotes: 0

Views: 2142

Answers (1)

Axl  Decortop
Axl Decortop

Reputation: 1

ivtApp has context path "ivt", so you need to use host:9080/ivt

Btw, you can find context path setting in websphere\application control panel

Upvotes: 0

Related Questions