Java and mixed language debug limitations
- Drop to frame and Hot code replace: The drop to frame and hot code replace features should not be used while debugging XSLT or EGL called from Java.
- Suspending all Java breakpoints: Suspend all Java breakpoints should not be used when debugging mixed language applications.
- Step over and step return: Step over and step return are only supported for the top stack frame.
- Suspending: Suspend may not work properly when debugging a mixed language application. Use breakpoints instead.
Hot Method Replace
- Changes to source that affect the shape of the class are not supported. This means that changes to method bodies will be hot replaced, while the following are examples of changes that will not be hot replaced:
- changes to class structure, such as the removal/addition of methods
- modification of class variables
- changes to inner classes
- Changes to the code in the bottom stack frame (the main(...) method) cannot be hot replaced.
- JSP Debugging does not support hot method replace of Java code.
Related concepts
Hot Method Replace for debugging Java applications
Hot Method Replace for debugging applications on WebSphere Application Servers
Related reference
WebSphere Application Server debug limitations