The JSP specification requires that an attribute name is preceded by whitespace ERROR for WDK based applications.

0

Category:

Try this. I had this issue and got it working using this config change.

Platform
AppServer - Tomcat 7
Java 1.6
OS - Windows 7
Documentum App Version - 6.7 SP1

Step 1. Modify the element in the context.xml file located at \conf:
From:
   
To:
   

Step 2. Add the following line in the catalina.properties file located at \conf:
org.apache.jasper.compiler.Parser.STRICT_WHITESPACE=false  

Step 3. Disable tag reuse in Apache Tomcat in the web.xml file of the /conf directory.
 Find the JSP servlet entry in the web.xml file. Add the enablePooling initialization parameter and disable pooling:
 
  jsp  
  org.apache.jasper.servlet.JspServlet  
   
       enablePooling  
       false  
 
 
   
       fork  
       false  
 
 
   
       xpoweredBy  
       false  
 
 
  3  
 

Step 4. Restart Tomcat

Happy Coding..