empty servlet responses
by Andreas Tschritter
Hi,
we are running an Axis 1.4 server app inside a JBoss 4.0.2 AS with basically everything disabled but the tomcat. It is quite simple, for every call it
gets some XML from another app running on the same AS, adds the SOAP envelope and returns that.
We test this app with a test client does very frequent requests.
During the test runs from time to time we get an empty response from the server.
When this happens, it often happens a small number of times during some seconds and then everything is ok again for one or more hours.
On the server, with Axis logging set to debug and jboss/tomcat logging set to info, there are no errors and the requests during that time seem to work
like all the others. Also, there is no garbage collection during that time. Only thing I've noticed is that the requests at that time take a bit longer.
It also seems to happen less when logging is set to a low level and much logging output s produced.
Only the Jboss + apps is running on that machine, nothing else, not even crons. Its a quad-core AMD64 with 8GB RAM running debian 4.0, the jboss VM has
5GB heap assigned.
Does anybody have an idea what could cause this or what we could do to find / fix the issue?
thanks,
Andreas Tschritter
18 years, 2 months
[JBoss Portal] - Re: IPC issues with Portal 2.4.6
by rob_gar_esp
and for clearer information:
17:54:26,062 ERROR [STDERR] java.lang.NullPointerException
| 17:54:26,062 ERROR [STDERR] at org.jboss.portlet.JBossRenderResponse.createRenderURL(JBossRenderResponse.java:71)
| 17:54:26,062 ERROR [STDERR] at org.jboss.portlet.hello.HelloWorldPortletA.doView(HelloWorldPortletA.java:26)
| 17:54:26,062 ERROR [STDERR] at org.jboss.portlet.JBossPortlet.doDispatch(JBossPortlet.java:257)
| 17:54:26,062 ERROR [STDERR] at org.jboss.portlet.JBossPortlet.render(JBossPortlet.java:244)
| 17:54:26,062 ERROR [STDERR] at org.jboss.portlet.JBossPortlet.render(JBossPortlet.java:390)
| 17:54:26,062 ERROR [STDERR] at org.jboss.portal.portlet.impl.jsr168.PortletContainerImpl.invokeRender(Portl
which means here:
| // link to a page
| html.append("<-- Page Linking --><br/>");
| PortalNode thisNode = req.getPortalNode().getParent(); // will return this Page as a node.
| PortalNode linkToNode = thisNode.resolve("../default");
| PortalNodeURL pageURL = resp.createRenderURL(linkToNode); ///HERE!!!!
| html.append("Page: " + linkToNode.getName() + " -> ");
| html.append("<a href=\"" + pageURL.toString() + "\">" + linkToNode.getName() + "</a>");
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130165#4130165
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130165
18 years, 2 months