We are still using an older ME4S 8.6. It has worked fine for a long time, but now maybe as the project has grown, we’re seeing a major issue with editing a JSF file.
The code-assist actually works fast enough to use. But what’s happening now is as we type and edit attributes of tags, we get the win7 circle of death spinning for a few seconds, and pausing after each character.
For example, let’s say I have this snippet:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ice="http://www.icesoft.com/icefaces/component"
xmlns:c="http://java.sun.com/jsp/jstl/core"
>
<f:view>
<html>
<head>
<title>Create Report</title>
<link rel="stylesheet" type="text/css"
href="./xmlhttp/css/xp/xp.css" />
</head>
<body>
<ice:form id="mainform">
</ice:form>
</body>
</html>
</f:view>
</jsp:root>
If I were to remove the quote after “mainform”, or try to add another attribute, pretty much anything inside of the tag, it crawls to unusable. It seems to be worse when we have open quotes like it’s thinking after every keystroke. And I think it is since the cpu shoots up.
FYI, this is win7 64bit with 8GB ram and an SSD.
Anyone run into this and have an idea on how to fix it?
Thanks,
Jim