0

I have IVR -Java application deployed on caucho Resin server Web App is not in server but directory outside on same system. Also Jsp are getting compiled in external directory. In eclipse I have source code when I launch debugger I am able to connect and I am able to debug through java classes but when control goes to jsp file it is not able to find source

Any idea how i can fix it.??

user1228785
  • 512
  • 2
  • 6
  • 19

1 Answers1

0

Maybe that's because eclipse can't find the source. Have you tried adding that to the build path? Project -> properties search for build path.

If the source requires a different language to run, Jsp (i've never dealt with that), then perhaps you can get a plugin for eclipse for that language (jsp) and then add the jsp source to a (eclipse) project that houses the jsp section of the whole project.

Edit: seems like since I haven't messed with JSP much, I gave the wrong advice. Follow the link in the comment below.

Community
  • 1
  • 1
Adam Miller
  • 1,756
  • 1
  • 25
  • 44
  • build path? Jsp are getting compiled into work folder and application is working also i am nt able to see it through eclipse to debug – user1228785 Apr 23 '12 at 15:28