This content has been marked as final.
Show 2 replies
-
1. NullPointerException in LoadServlet.init()
Paul Ferraro Feb 11, 2011 5:26 PM (in response to Leandro Quiroga)The default values used by the demo are for use with JBoss AS. In JBoss AS, the default service name of the web server is "jboss.web". In Tomcat, the default service name is "Catalina". To override the service name used by the load servlets in the demo web application, add the following servlet context parameter to the web.xml file within demo.war:
<context-param>
<param-name>service-name</param-name>
<param-value>Catalina</param-value>
</context-param>
-
2. NullPointerException in LoadServlet.init()
Leandro Quiroga Feb 14, 2011 11:20 AM (in response to Paul Ferraro)Thanks Paul!
It works perfect.
It would be very useful to include this in the documentation.
Leaqui