For help with installation, bugs reports or feature requests, please head over to our new forums.
Genuitec Community on GitHub
- This topic has 8 replies, 2 voices, and was last updated 21 years, 5 months ago by
Riyad Kalla.
-
AuthorPosts
-
dhirshjrMemberHi,
I am new to MyEclipse and jsp. I was trying to get debugging to work.
And it does except two things.1. Break points have a red square instead of a checkmark like I see in the tutorials.
2. When I try the example showing that you are able to change a string that is about to be printed (HelloWorld example), it never changes for me.
I am running eclipse 3.1M4 and MyEclipse 3.8.4 with Tomcat 5.5.7
Thanks in advance,
DouglasMarch 24, 2005 at 1:03 pm #227121
Riyad KallaMemberDouglas, are you using MyEclipse 3.8.4 BETA for 3.1, or are you using the 3.8.4 stable release for Eclipse 3.0?
Also, make sure you are using our editor with your JSP files (right click > Open With > MyEclipse JSP Editor).
AND, is the red square in the right margin? Thta means an error, if you mouse over it, what does it say? Try and correct that error.
March 24, 2005 at 1:12 pm #227123
dhirshjrMemberHi Riyad,
is the red square in the right margin?
The square is in the left margin.
are you using MyEclipse 3.8.4 BETA for 3.1
I believe it is MyEclipse 3.8.4 BETA for 3.1
Also, make sure you are using our editor with your JSP files (right click > Open With > MyEclipse JSP Editor).
I will have to check on this one. I am not at my home computer right now.
By the way thanks for the quick response.
Thanks,
DouglasMarch 24, 2005 at 1:47 pm #227128
Riyad KallaMemberThere shouldn’t actually be any squares in the left margin… just red circles with X’s in them… so I wonder if you might be using a different editor.
March 24, 2005 at 2:52 pm #227133
dhirshjrMemberOk I set up a clean install for the environment.
I now see the right symbol for the breakpoint. (Checkmark)
That was the first problem. I still have not been able to get the second problem fixed.2. When I try the example showing that you are able to change a string that is about to be printed (HelloWorld example), it never changes for me.
March 24, 2005 at 2:53 pm #227134
Riyad KallaMemberWhich example is this? Is the string being changed in a Servlet?
March 24, 2005 at 2:56 pm #227135
dhirshjrMemberUnder tutorials and visual tours it is the first one. “Web Development”
March 24, 2005 at 3:15 pm #227137
dhirshjrMemberRiyad,
Thanks for all your help on this. I was trying to change the string in an out.println() in a JSP.
This time I used a java bean and it worked.Again thanks for your help,
DouglasMarch 24, 2005 at 3:16 pm #227138
Riyad KallaMemberThe key to that working is Hot syncing being enabled, you can enabled that via:
1) You must use an exploded deployment, you cannot use a packaged deployment.
2) You MUST run your app server in debug mode (double check your connector settings, make sure debug is clicked under “Launch” settings).
3) Your app server must be configured to reload changed files. In Tomcat this is via the “reloadable=true” attribute for your web context. -
AuthorPosts
