cancel
Showing results for 
Search instead for 
Did you mean: 

Finding out the URL

Former Member
0 Kudos

Hello,

i have created a project with the Developer Studio. Now i have an ear file which i have deployed on the WAS.

My Problem is that i don`t know the URL of my Project (its with different servlets and jsp).

In the "J2EE first"-Tutorial is the URL as followed explained:

http://<yourhost>:50000/<contextRoot>/<Name_of_JSP.jsp>;

so the URL for the example is:

http://localhost:50000/Calculator/Calculator.jsp.

But in the Email Tutorial is the URL not so easy assembled. Its there:

http://localhost:50000/webdynpro/dispatcher/local/EmailWS/EmailWSApp

You see? It`s much more complex.

In Tomcat it's really easy, the URL is

http://localhost:8085/ESVEAP/start.do

The Name of my ear file is ESVEAP and the context root is esv.

So can you help me to find out the URL of my Project?

Thx

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Toni,

it depends on the type of your project. If it's a "normal" Web project with JSPs, then the first two URLs are correct (if you don't change something in the configuration). If it's a Web Dynpro project, the second one is correct. WD applications are started by a specialized dispatcher servlet, so the parts ".../webdynpro/dispatcher/" address the servlet, the next part addresses the Web Dynpro EAR "local/EmailWS/" the final part addresses the WD application name "..EMailWSApp".

Regards

Stefan