[jboss-user] [Tomcat, HTTPD, Servlets JSP] - servlet init hangs reading /WEB-INF/web.xml 5.0.1

2009-03-09 Thread mlybarger
I have a very simple servlet which hangs on the servlet init method. Another similar example I have throws an OOM excetpion doing the same thing. All the code is doing is trying to parse the web.xml using the commons digester. I hope this isn't too much code to paste. I'm running a default

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: servlet init hangs reading /WEB-INF/web.xml 5.0.1

2009-03-09 Thread mlybarger
ok, finally an exception was thrown. here's the stack | 07:49:36,529 INFO [TestServlet] start - init() | 08:01:21,136 WARN [ClassLoaderManager] Unexpected error during load of:org.xml.sax.XMLReader | java.lang.OutOfMemoryError: Java heap space | at

[jboss-user] [Installation, Configuration DEPLOYMENT] - JB 5.0 error deploying short web application

2009-01-07 Thread mlybarger
I'm working on migrating our web applications from 4.2.2 to JB 5.0. the below error shows up. It seems that the call to: File.createTempFile(prefix, -exp.war, config.getServerTempDeployDir()); cannot create a temp file using a prefix that is shorter than 3 characters. Not sure if I should

[jboss-user] [Installation, Configuration DEPLOYMENT] - jboss 5.0 migration classloader woes

2009-01-05 Thread mlybarger
So, we're looking to migrate to JBoss AS 5.0. Recently, I ran into a problem where our applications do a lot of: | URL m_url = this.getClass().getClassLoader().getResource( WEB-INF ); | File webinf = new File( m_url.getPath() ); |