It looks like the bundled package of JBoss Portal (Portal RC1 + AS 4.0.1sp1) has problems generating servlets from JSP. In the logs one can find a bunch of "Generated Servlet error" messages. I've tried to fix this issue by modifying the configuration of the tomcat jsp servlet. But adding
| <init-param>
| <param-name>compilerSourceVM</param-name>
| <param-value>1.4</param-value>
| </init-param>
| <init-param>
| <param-name>compilerTargetVM</param-name>
| <param-value>1.4</param-value>
| </init-param>
|
didn't resolve the issue. Any ideas?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877630#3877630
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877630
|