I can double click to make a breakpoint, but there is no flag or checkmark.
Don’t get discouraged just because there’s no checkmark initially. The checkmark only shows up after the Java class has been loaded by the external WebLogic JVM.
Is the JSP you’re trying to set a breakpoint in a top-level JSP or a fragment (included JSP)? Breakpoints only function in top-level JSP’s since included JSP’s are inlined and as such don’t generate a class file. To debug an included JSP, set a breakpoint in the top level JSP that includes it and then step over the include line with the debugger.
What type of deployment are you using? Our exploded deployer, packaged deployer, or your own? In the deployment directory under your weblogic domain, do you see the weblogic.xml file? Does it have the content you expect it to?
I’d also recommend upgrading to v2.6.0 using the Eclipse Update Manager since several improvements in the deployer were made.
–Scott
MyEclipse Support