- This topic has 13 replies, 2 voices, and was last updated 19 years, 5 months ago by
Riyad Kalla.
-
AuthorPosts
-
Larry HebelMemberI am using …
Eclipse SDK
Version: 3.1.0
Build id: I20050627-1435MyEclipse JSP Design Support
Version: 3.9.310
Build id: 20050808-4.0-Milestone-3When I open a JSP file and start making changes the cursor begins to flash rapidly and the Progress window is flooded with “Table Synchronization”, “Refresh Property Sheet” and “Update Outline” messages. It then takes several minutes before the processing has finished and the IDE returns to normal behavior, e.g. I can’t copy and paste lines in the JSP file however I can type to enter changes and select Save. With the next change I begin to make it starts again. I have reviewed all the documentation I can find and can’t seem to resolve this behavior. My Problem window is also flooded with “Unknown Tag …” messages if that’s relevant.
Riyad KallaMemberI would encourage you to shut down MyEclipse, uninstall it then download our 4.0.3 Installer, install that, then add -clean to your command line arguments you use to start Eclipse and go ahead and start it back up. Then close and reopen all your editors and see if the problem persists.
The designer is one of the biggest ticket items in MyEclipse so we are constantly working on it, more improvements and optimizations are comming in 4.1 and 5.0
Larry HebelMemberNow I don’t have any of the MyEclipse editors on the menus. MyEclipse appears on the main menu bar but it doesn’t appear on the Window, Preferences and it doesn’t appear on the Open menu when I want to open a JSP.
MyEclipse does appear in the Features list from the About dialog, so how do I get all the options back?
Larry HebelMemberAfter poking around and looking at the Software Updates, Manage Configuration, I find the following errors listed under the MyEclipse Base Platform Support 4.0.0, Status.
No plug-in: “org.eclipse.draw2d” included at runtime.
No plug-in: “org.eclipse.emf.codegen” included at runtime.
No plug-in: “org.eclipse.emf.codegen.ecore” included at runtime.
No plug-in: “org.eclipse.emf.common” included at runtime.
No plug-in: “org.eclipse.emf.ecore” included at runtime.
No plug-in: “org.eclipse.emf.ecore.xmi” included at runtime.
No plug-in: “org.eclipse.emf.edit” included at runtime.
No plug-in: “org.eclipse.emf.edit.ui” included at runtime.
No plug-in: “org.eclipse.gef” included at runtime.
Larry HebelMemberOk, fixed the last problem by selecting Find Updates for the MyEclipse Enterprise Workbench 4.0.3 and letting it install again.
Now I have the expected content on the menus. But I also have errors for my JSP files like this:
File “/WEB-INF/tld/struts-bean.tld” not found. NOTE: No JSP line number was avaliable so line 1 was used for the marker.
I have verified the file does exist in the folder provided it starts with my <project>/tmp folder. So how do I make it see the files?
Riyad KallaMemberlhebel,
Please include the <%@taglib snippets from the top of your JSP page, as well as your <taglib> entries from your web.xml file.I would also suggest you read: http://www.myeclipseide.com/FAQ+index-myfaq-yes-id_cat-31.html#251
Larry HebelMemberfrom JSP
<%@ taglib uri=”/tags/struts-bean” prefix=”bean” %>
<%@ taglib uri=”/tags/struts-html” prefix=”html” %>
<%@ taglib uri=”/tags/dsralert” prefix=”dtags” %>from web.xml
<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-bean.tld</taglib-location>
</taglib><taglib>
<taglib-uri>/tags/struts-html</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-html.tld</taglib-location>
</taglib><taglib>
<taglib-uri>/tags/struts-logic</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-logic.tld</taglib-location>
</taglib><taglib>
<taglib-uri>/tags/struts-nested</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-nested.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/tags/dsralert</taglib-uri>
<taglib-location>/WEB-INF/tld/dsralert.tld</taglib-location>
</taglib>
Riyad KallaMemberThose all look good, I just re-read your last sentence:
I have verified the file does exist in the folder provided it starts with my <project>/tmp folder. So how do I make it see the files?
What did you mean <project>/tmp, is your /tmp directory your WebRoot?
Larry HebelMemberYes, tmp is the WebRoot. Under tmp is WEB-INF. So the full folder structure is
<workspace>/<project>/tmp/WEB-INF/tld/struts-bean.tld
<workspace>/<project>/tmp/WEB-INF/web.xml
Riyad KallaMemberThis all looks try, try the following:
1) Add -clean to your command line arguments and restart MyEclipse
2) Run Project > Clean on your project and let it rebuild
Larry HebelMemberNo change, still have the “File … not found”
Riyad KallaMemberPlease right click on your project, and do a refresh. Then navigate to your WEB-INF/tld directorya nd double click the struts-bean.tld file, or whatever TLD the validator is complaining about. Did it open correctly?
Does this validation warning show up on all the JSPs that use that TLD or just certain ones?
Larry HebelMemberThe TLD opens correctly.
The validation warning appears on all JSP files using the TLD.
Riyad KallaMemberWould you be able to use File > Export > Archive > ZIP functionality to export your project to a ZIP file and email it to us at support@genuitec.com ATTN Riyad and be sure to include the link to this forum post so I know why I’m getting the attachment.
If not, can you create a new web project that exhibits this same problem, possibly with a subset of your files, and send that to me?
-
AuthorPosts