Hello,
does this error also occur if you start your application from the browser?
1) start Tomcat
2) open a browser
3) invoke the URL http://localhost:8080/dblp/search.jsp
If yes, could you have a look at your JSP search.jsp?
If it’s to large, Tomcat is unable to compile the page because the generated servlet code of Tomcat consists of one mehtod. If this method is to large, the Java compile fails.
In this case, you can edit the structure.xml file. It resides within the directory
%TOMCAT_HOME%\webapps\dblp
where you generated the application. Put a comment around fields you don’t require within the search page of your application, e.g.
<search>
<input ....>
<!--
<input ...>
<input ...>
-->
</search>
Then, invoke the generator and use the regenerate option.
You can do the same think with other pages if you are not able to compile them (e.g. browse or view).
Bye,
Christian.
#API-Management#webMethods#Tamino