I was able to successfully import into MyEclipse an existing command-line J2EE app (multiple dependent/linked build dirs), build with the existing ant build files by splitting into multiple projects (EAP with an EJB and WEB project, and a bunch of Java projects) and then forcing external ant builds on each project by selecting ‘properties’, then ‘builders’ and adding a new ‘ant build’.
I manually deploy for now with success to JBoss 3.2.6, and I can start Jboss and successfully set a breakpoint in a Session Bean. Great!
My problem is that once I get to the breakpoint, I can see the values of the method’s input variables (arg0, arg1, arg2, etc…), but cannot view any local variables. For example, just before the breakpoint I define a simple String as follows: String ret = “OK”; A few lines down at my breakpoint I try to “inspect”, “display” or “watch” the defined String “ret” and I get a popup window saying: “ret” cannot be resolved.
Any ideas on this much appreciated,
Brian