0

Normally, when walking through the javacore file, we can see code stack as below:

at com/csii/pe/channel/http/servlet/MainServlet.doGet(Bytecode PC:78(Compiled Code))
at javax/servlet/http/HttpServlet.service(HttpServlet.java:743(Compiled Code))
at javax/servlet/http/HttpServlet.service(HttpServlet.java:856(Compiled Code))

As for the word Bytecode above, does it mean the code is from the self-developed application rather than the Middleware inside like IBM WAS?

Thanks

wing2ofsky
  • 926
  • 4
  • 27
  • 48

1 Answers1

0

As for the word Bytecode above, does it mean the code is from the self-developed application rather than the Middleware inside like IBM WAS?

I don't think so. I think you are misparsing it ... and it is saying that the bytecode program counter (PC) was 78 at that point.

(However, fully qualified class / method name are a give away ...)

Stephen C
  • 698,415
  • 94
  • 811
  • 1,216