I have JBoss 3.2.2 running a web application. The server has been stopping web 
services, throwing unexplainable exceptions, and doing other screwy things for no 
traceable reason. Just today, one of my jsp's threw an exception because it could not 
locate the getClass() method needed to instantiate a bean through a useBean tag. 
However, every other page that uses the SAME EXACT useBean line worked fine. This has 
to be a problem with JBoss, because after we rebooted the server, the page loaded fine 
-- we did not change a single line of code in it.

Then, I uploaded the following page named "redirerd.jsp":

...
<%@ page contentType="text/html; charset=iso-8859-1" language="java" %>
<%
        if (request.getParameter("id") != null && request.getParameter("id").length() 
> 0) {
                response.sendRedirect("data_view.jsp?saveId=" + 
request.getParameter("id") + "&typeFilter=65");
        } else {
                response.sendRedirect("data_list.jsp");
        }
%>
...

After I uploaded the page, I went to view it. It looked like JBoss was 
translating/compiling the page, but it never loaded in my browser. Then, I discovered 
that web services had stopped running in JBoss and that the whole site was down.

When web services stop, nothing else seems affected. The computer stays alive, as does 
FTP, etc. Loading pages in a browser just hangs, then eventually delivers a response 
as if the site did not exist. JBoss does not appear to be stuck in any infinite loops 
or anything, as there is always tons of available memory and CPU.

Does this sound familiar to ANYONE? Am I posting in the wrong forum? I appreciate any 
help anyone can lend to this predicament, and thank you in advance.


<a 
href="http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3824971#3824971";>View 
the original post</a>

<a 
href="http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3824971>Reply 
to the post</a>


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to