cancel
Showing results for 
Search instead for 
Did you mean: 

How to watch the error log via Exception ID

Former Member
0 Kudos

hello every one

i developed a .ear project, it's include one of the web module(jsp/servlet)

in fact, it's just a hello world program.

the coding like follow :

<%

String msg = "Hello World";

out.println(msg);

%>

and i deployed it to J2EE Engine.

when i request that Hello World page, i got a error message like follow:

Application error occurred during the request procession.

Details: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException:

Error compiling [/index.jsp] of alias [WebHelloWorld] of J2EE application [sap.com/AppHelloWorld].

Exception id: [001A64244EA60076000000E8000016B90004681B758A1DDD]

you know, it's just a easy coding..

i don't konw what's the reason .

so, i need to watch the more information about that error via Exception ID

but how to do ?

waiting for your reply , thanks!~~~

Accepted Solutions (1)

Accepted Solutions (1)

former_member206159
Active Contributor
0 Kudos

go to

http://<hostname>:<port>/nwa

You need administration rights to access it.

Raghu

Answers (2)

Answers (2)

Former Member
0 Kudos

hello

thanks for all reply.

the problem has been solved .

the reason is one line of the code missed the ";"

so sorry, i'm so carelessly

Former Member
0 Kudos

Your .jsp is converted at runtime to a .java file and then compiled. Look in the folder where this happens. It will be quite a few levels deep under \usr\sap\SID\JCxx\j2ee\cluster\server0\apps\ but you should find it by searching for your jsp filename, without the jsp! For example, GetMail.jsp is converted into jsp_GetMail*.java.