[JBoss JIRA] Created: (MODCLUSTER-261) segmentation fault with nofailover=On and proxy in virtual host
by Tomas Huryn (JIRA)
segmentation fault with nofailover=On and proxy in virtual host
---------------------------------------------------------------
Key: MODCLUSTER-261
URL: https://issues.jboss.org/browse/MODCLUSTER-261
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.1.3.Final
Environment: RHEL 5.7, Apache HTTPD 2.2.3 (packaged) or Apache HTTPD 2.2.21 (compiled), EAP 5.1.1
Reporter: Tomas Huryn
Assignee: Jean-Frederic Clere
Priority: Blocker
we have
- two clusters (2 JBoss instances for cluster1 (inst1 and inst2), 1 JBoss instance for cluster2 (inst3)). All instances run on the same machine (as) with binding manager
- AJP on JBoss (port 8009 (inst1), 8109 (inst2), 8209 (inst3))
- root context enabled, application is in ROOT.war
- defined jvmRoute in server.xml (inst1 -Djboss.web.jvmRoute=as.jb1 , inst2 -Djboss.web.jvmRoute=as.jb2 , inst3 -Djboss.web.jvmRoute=as.cms1)
- Apache HTTPD runs on separate machine (ws)
we need
- cluster1 has connection to inst1 and inst2 with sticky session (client with one session will be routed to one instance only)
- cluster2 has connection to inst3
We had tryed 2 solutions with no success:
SOLUTION 1
- all in virtual host
<VirtualHost externalip:8080>
ServerName web1
<Proxy balancer://cluster1/>
Order deny,allow
Allow from all
BalancerMember ajp://as:8009/ route=as.jb1
BalancerMember ajp://as:8109/ route=as.jb2
</Proxy>
ProxyPass / balancer://cluster1/ stickysession=JSESSIONID|jsessionid nofailover=On
ProxyPassReverse / balancer://cluster1/
</VirtualHost>
<VirtualHost externalip:8080>
ServerName web2
<Proxy balancer://cluster2/>
Order deny,allow
Allow from all
BalancerMember ajp://as:8209/ route=as.cms1
</Proxy>
ProxyPass / balancer://cluster2/ stickysession=JSESSIONID|jsessionid nofailover=On
ProxyPassReverse / balancer://cluster2/
</VirtualHost>
Result:
Solution generate segmentation fault in error log, where somebody try to browse web. If we remove nofailover=On, all works fine except stick session - requests are splited to inst1 and inst2.
SOLUTION2
- apache wide configuration
<Proxy balancer://cluster1/>
Order deny,allow
Allow from all
BalancerMember ajp://as:8009/ route=as.jb1
BalancerMember ajp://as:8109/ route=as.jb2
</Proxy>
<Proxy balancer://cluster2/>
Order deny,allow
Allow from all
BalancerMember ajp://as:8209/ route=as.cms1
</Proxy>
<VirtualHost externalip:8080>
ServerName web1
ProxyPass / balancer://cluster1/ stickysession=JSESSIONID|jsessionid nofailover=On
ProxyPassReverse / balancer://cluster1/
</VirtualHost>
<VirtualHost externalip:8080>
ServerName web2
ProxyPass / balancer://cluster2/ stickysession=JSESSIONID|jsessionid nofailover=On
ProxyPassReverse / balancer://cluster2/
</VirtualHost>
Result:
Sticky session works fine (no segmentation fault), but requests for web1 is routed to inst3 (cluster2) too and requests for web2 is routed to inst1 (cluster1) too. So there is problem with existence of two proxy cluster conffiguration directive.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] Created: (MODCLUSTER-246) :read-attribute and :write-attribute Error in AS7
by Stefan Negrea (JIRA)
:read-attribute and :write-attribute Error in AS7
-------------------------------------------------
Key: MODCLUSTER-246
URL: https://issues.jboss.org/browse/MODCLUSTER-246
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.1.3.Final
Reporter: Stefan Negrea
Assignee: Jean-Frederic Clere
:read-attribute(name=xyz) and :write-attribute(name=xyz,value=zyx) do not work in console with JBoss AS7.1 nightly builds.
The expectation is that :read-attribute will return the current value of the property or the default value if the property has not been set. For :write-attribute the expectation is that all the properties listed in :read-resource-description can be set.
The JBoss was started with the following command:
bin/standalone.sh --server-config=standalone-ha.xml
Here is the current output for invoking the two operations use the advertise attribute as an example. The outcome of both operations is failed.
[standalone@localhost:9999 subsystem=modcluster] :read-attribute(name=advertise)
{
"outcome" => "failed",
"failure-description" => "No known attribute advertise",
"rolled-back" => true
}
[standalone@localhost:9999 subsystem=modcluster] :write-attribute(name=advertise,value=true)
{
"outcome" => "failed",
"failure-description" => "No known attribute called advertise",
"rolled-back" => true
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] Created: (MODCLUSTER-236) Allow context lengths greater than 40
by Samuel Mendenhall (JIRA)
Allow context lengths greater than 40
-------------------------------------
Key: MODCLUSTER-236
URL: https://issues.jboss.org/browse/MODCLUSTER-236
Project: mod_cluster
Issue Type: Feature Request
Affects Versions: 1.1.2.Final
Reporter: Samuel Mendenhall
Assignee: Jean-Frederic Clere
Fix For: 1.1.3.Final
The mod_cluster 1.1 documentation states the following in the Limitation section:
"Max context length 40 (for example myapp.war deploys in /myapp /myapp is the context)."
This value should be at least doubled to 80 for use with ESB which creates long context names.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] Created: (MODCLUSTER-257) Few seconds of 503 on failover with AS7 due All workers are in error state
by Radoslav Husar (JIRA)
Few seconds of 503 on failover with AS7 due All workers are in error state
--------------------------------------------------------------------------
Key: MODCLUSTER-257
URL: https://issues.jboss.org/browse/MODCLUSTER-257
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.1.3.Final
Environment: AS 7.0.1
Reporter: Radoslav Husar
Assignee: Jean-Frederic Clere
Priority: Critical
There are problems with failover again, when that happens client gets 503s for few seconds.
Version 1.1.3, everything default, 2 nodes in cluster.
Access log
{code}
127.0.0.1 - - [07/Sep/2011:15:25:07 +0200] "INFO / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:07 +0200] "CONFIG / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:07 +0200] "ENABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:07 +0200] "ENABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:07 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:17 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:27 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:37 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:47 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:48 +0200] "INFO / HTTP/1.1" 200 427
127.0.0.1 - - [07/Sep/2011:15:25:48 +0200] "CONFIG / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:48 +0200] "ENABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:48 +0200] "ENABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:25:48 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:25:57 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:25:58 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:07 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:08 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:17 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:18 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:27 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:27 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:27 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:28 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:28 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:28 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:29 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:29 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:26:37 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:38 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:47 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:48 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:26:57 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:26:58 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:03 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:04 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:05 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 1
127.0.0.1 - - [07/Sep/2011:15:27:05 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:05 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 2
127.0.0.1 - - [07/Sep/2011:15:27:05 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:07 +0200] "STATUS / HTTP/1.1" 200 60
127.0.0.1 - - [07/Sep/2011:15:27:08 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "DISABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "STOP-APP / HTTP/1.1" 200 75
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "DISABLE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "STOP-APP / HTTP/1.1" 200 82
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "REMOVE-APP / HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:27:12 +0200] "REMOVE-APP /* HTTP/1.1" 200 -
127.0.0.1 - - [07/Sep/2011:15:27:13 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:13 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:14 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:14 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:15 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:15 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:16 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:16 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:17 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:17 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:18 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:18 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:18 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:19 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:20 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:21 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:21 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:22 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 503 323
127.0.0.1 - - [07/Sep/2011:15:27:22 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:23 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 2
127.0.0.1 - - [07/Sep/2011:15:27:23 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:24 +0200] "GET /SessionTest-2.0-SNAPSHOT/SessionTestServlet HTTP/1.1" 200 2
127.0.0.1 - - [07/Sep/2011:15:27:24 +0200] "GET /favicon.ico HTTP/1.1" 404 990
127.0.0.1 - - [07/Sep/2011:15:27:28 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:38 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:48 +0200] "STATUS / HTTP/1.1" 200 63
127.0.0.1 - - [07/Sep/2011:15:27:58 +0200] "STATUS / HTTP/1.1" 200 63
{code}
Error log
{code}
[Wed Sep 07 15:25:05 2011] [info] mod_unique_id: using ip addr 10.34.3.13
[Wed Sep 07 15:25:06 2011] [info] Init: Seeding PRNG with 144 bytes of entropy
[Wed Sep 07 15:25:06 2011] [info] Init: Generating temporary RSA private keys (512/1024 bits)
[Wed Sep 07 15:25:06 2011] [info] Init: Generating temporary DH parameters (512/1024 bits)
[Wed Sep 07 15:25:06 2011] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Sep 07 15:25:06 2011] [info] Init: Initializing (virtual) servers for SSL
[Wed Sep 07 15:25:06 2011] [info] mod_ssl/2.2.15 compiled against Server: Apache/2.2.15, Library: OpenSSL/0.9.8k
[Wed Sep 07 15:25:06 2011] [warn] No JkLogFile defined in httpd.conf. Using default /opt/jboss/httpd/httpd/logs/mod_jk.log
[Wed Sep 07 15:25:06 2011] [warn] No JkShmFile defined in httpd.conf. Using default /opt/jboss/httpd/httpd/logs/jk-runtime-status
[Wed Sep 07 15:25:06 2011] [notice] Digest: generating secret for digest authentication ...
[Wed Sep 07 15:25:06 2011] [notice] Digest: done
[Wed Sep 07 15:25:06 2011] [info] mod_unique_id: using ip addr 10.34.3.13
[Wed Sep 07 15:25:07 2011] [info] Init: Seeding PRNG with 144 bytes of entropy
[Wed Sep 07 15:25:07 2011] [info] Init: Generating temporary RSA private keys (512/1024 bits)
[Wed Sep 07 15:25:07 2011] [info] Init: Generating temporary DH parameters (512/1024 bits)
[Wed Sep 07 15:25:07 2011] [info] Init: Initializing (virtual) servers for SSL
[Wed Sep 07 15:25:07 2011] [info] mod_ssl/2.2.15 compiled against Server: Apache/2.2.15, Library: OpenSSL/0.9.8k
[Wed Sep 07 15:25:07 2011] [warn] No JkLogFile defined in httpd.conf. Using default /opt/jboss/httpd/httpd/logs/mod_jk.log
[Wed Sep 07 15:25:07 2011] [warn] No JkShmFile defined in httpd.conf. Using default /opt/jboss/httpd/httpd/logs/jk-runtime-status
[Wed Sep 07 15:25:07 2011] [notice] Advertise initialized for process 13909
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 13912 for worker proxy:reverse
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 13912 for (*) min=0 max=25 smax=25
[Wed Sep 07 15:25:07 2011] [notice] Apache/2.2.15 (Unix) mod_cluster/1.1.x mod_ssl/2.2.15 OpenSSL/0.9.8k DAV/2 mod_jk/1.2.30 configured -- resuming normal operations
[Wed Sep 07 15:25:07 2011] [info] Server built: Aug 11 2011 22:20:57
[Wed Sep 07 15:25:07 2011] [debug] worker.c(1757): AcceptMutex: sysvsem (default: sysvsem)
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 13913 for worker proxy:reverse
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1837): proxy: worker proxy:reverse already initialized
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 13913 for (*) min=0 max=25 smax=25
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 13916 for worker proxy:reverse
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1837): proxy: worker proxy:reverse already initialized
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 13916 for (*) min=0 max=25 smax=25
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1653): manager_trans INFO (/)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2296): manager_handler INFO (/) processing: ""
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2339): manager_handler INFO OK
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1653): manager_trans CONFIG (/)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2296): manager_handler CONFIG (/) processing: "JVMRoute=rhusarRoute&Host=rhusar&Port=8080&Type=http"
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2339): manager_handler CONFIG OK
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1653): manager_trans ENABLE-APP (/)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2296): manager_handler ENABLE-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2F"
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2339): manager_handler ENABLE-APP OK
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1653): manager_trans ENABLE-APP (/)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2296): manager_handler ENABLE-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2FSessionTest-2.0-SNAPSHOT"
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2339): manager_handler ENABLE-APP OK
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:07 2011] [debug] mod_proxy_cluster.c(416): add_balancer_node: Create balancer balancer://RadoCluster
[Wed Sep 07 15:25:07 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://rhusar:8080
[Wed Sep 07 15:25:07 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13913 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:25:07 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 1
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:25:07 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:07 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(416): add_balancer_node: Create balancer balancer://RadoCluster
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://rhusar:8080
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13912 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 1
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 13999 for worker proxy:reverse
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(1837): proxy: worker proxy:reverse already initialized
[Wed Sep 07 15:25:08 2011] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 13999 for (*) min=0 max=25 smax=25
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(416): add_balancer_node: Create balancer balancer://RadoCluster
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://rhusar:8080
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13916 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 1
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:08 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(416): add_balancer_node: Create balancer balancer://RadoCluster
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://rhusar:8080
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13999 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 1
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:09 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:13 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:13 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:13 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:13 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:17 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:17 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:17 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:17 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:17 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:17 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:17 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:17 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:18 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:18 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:18 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:18 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:25:18 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:23 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:23 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:23 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:23 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:27 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:27 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:27 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:27 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:27 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:27 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:27 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:27 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:28 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:28 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:28 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:28 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:33 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:33 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:33 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:33 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:37 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:37 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:37 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:37 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:37 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:37 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:37 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:37 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:38 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:38 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:38 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:38 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:43 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:43 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:43 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:43 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:47 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:47 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:47 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:47 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:47 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:47 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:47 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:47 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1653): manager_trans INFO (/)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2296): manager_handler INFO (/) processing: ""
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2339): manager_handler INFO OK
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1653): manager_trans CONFIG (/)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2296): manager_handler CONFIG (/) processing: "JVMRoute=localhostRoute&Host=localhost.localdomain&Port=8080&Type=http"
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2339): manager_handler CONFIG OK
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1653): manager_trans ENABLE-APP (/)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2296): manager_handler ENABLE-APP (/) processing: "JVMRoute=localhostRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2F"
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2339): manager_handler ENABLE-APP OK
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1653): manager_trans ENABLE-APP (/)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2296): manager_handler ENABLE-APP (/) processing: "JVMRoute=localhostRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2FSessionTest-2.0-SNAPSHOT"
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2339): manager_handler ENABLE-APP OK
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:48 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://localhost.localdomain:8080
[Wed Sep 07 15:25:48 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 2 in child 13913 for (localhost.localdomain) min=0 max=25 smax=25
[Wed Sep 07 15:25:48 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://localhost.localdomain:8080 2 (status): 1
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:25:48 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:25:48 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://localhost.localdomain:8080
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 2 in child 13912 for (localhost.localdomain) min=0 max=25 smax=25
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://localhost.localdomain:8080 2 (status): 1
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:25:49 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:49 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:49 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:25:49 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://localhost.localdomain:8080
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 2 in child 13916 for (localhost.localdomain) min=0 max=25 smax=25
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://localhost.localdomain:8080 2 (status): 1
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(228): Created: worker for http://localhost.localdomain:8080
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 2 in child 13999 for (localhost.localdomain) min=0 max=25 smax=25
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://localhost.localdomain:8080 2 (status): 1
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:25:49 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:25:53 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:53 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:53 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:53 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:54 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:25:54 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:54 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:54 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:25:57 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:57 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:25:57 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:57 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:57 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:57 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:57 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:57 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:25:58 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:25:58 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:25:58 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:58 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:25:58 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:25:59 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:25:59 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:59 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:25:59 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:03 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:03 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:03 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:04 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:04 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:04 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:07 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:07 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:07 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:07 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:07 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:07 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:07 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:07 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2380): proxy: http: backend socket is disconnected.
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:08 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:08 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:08 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:08 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:08 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:09 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:09 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:09 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:09 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2380): proxy: http: backend socket is disconnected.
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:26:13 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:14 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:14 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:14 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:14 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:17 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:17 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:17 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:17 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:17 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:17 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:17 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:17 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:18 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:18 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:18 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:18 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:18 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:19 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:19 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:19 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:19 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:23 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:23 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:23 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:23 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to rhusar
[Wed Sep 07 15:26:23 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:24 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:24 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:24 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:24 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:27 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:27 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:27 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:27 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value ThbFFMtCnwLmXw23wJjubWwQ.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value ThbFFMtCnwLmXw23wJjubWwQ.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://rhusar:8080)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 10.34.3.13:8080 (rhusar)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value XgTYenItQvB2QaTcH6T7Wg5h.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value XgTYenItQvB2QaTcH6T7Wg5h.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:27 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer...
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer... to localhost.localdomain:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to localhost.localdomain:8080
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2444): proxy: HTTP: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:26:27 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 127.0.0.1:8080 (localhost.localdomain)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:28 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:28 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:28 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:28 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value it4RNvBj7EMYHXcpN5kQUTeQ.localhostRoute.localhostRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value it4RNvBj7EMYHXcpN5kQUTeQ.localhostRoute.localhostRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://rhusar:8080)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value OuSjPqXEOYgVPrgGKVZyrNhX.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value OuSjPqXEOYgVPrgGKVZyrNhX.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer...
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer... to localhost.localdomain:8080
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to localhost.localdomain:8080
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:28 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:28 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value AvCebYVlLnnWxJEg+QpK8Czf.localhostRoute.localhostRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value AvCebYVlLnnWxJEg+QpK8Czf.localhostRoute.localhostRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://rhusar:8080)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value KipfRVsBHPUMQHmKIAOweK2o.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value KipfRVsBHPUMQHmKIAOweK2o.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer...
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/SessionTest-2.0-SNAPSHOT/SessionTestSer... to localhost.localdomain:8080
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to localhost.localdomain:8080
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:26:29 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:26:29 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:37 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:37 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:37 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:37 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:37 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:37 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:37 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:37 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:38 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:38 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:38 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:38 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:38 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:39 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:39 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:39 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:39 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:43 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:43 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:43 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:43 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:44 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:44 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:44 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:44 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:47 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:47 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:47 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:47 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:47 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:47 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:47 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:47 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:48 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:48 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:48 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:48 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:48 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:49 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:49 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:49 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:49 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:26:49 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:53 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:53 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:53 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:53 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:54 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:54 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:54 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:54 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:57 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:57 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:26:57 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:57 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:57 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:57 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:57 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:57 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:26:58 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:26:58 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:26:58 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2380): proxy: http: backend socket is disconnected.
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2444): proxy: http: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:26:58 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:26:58 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:26:59 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:26:59 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:59 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:26:59 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value 62Wm3LV5oQptBBblVXeo47L-.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 10.34.3.13:8080 (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 127.0.0.1:8080 (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://rhusar:8080)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 10.34.3.13:8080 (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2380): proxy: HTTP: backend socket is disconnected.
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2444): proxy: HTTP: fam 2 socket created to connect to localhost.localdomain
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 127.0.0.1:8080 (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 10.34.3.13:8080 (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:03 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:03 2011] [debug] proxy_util.c(2576): proxy: HTTP: connection complete to 127.0.0.1:8080 (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:04 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:04 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (rhusar)
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2193): proxy: connected /SessionTest-2.0-SNAPSHOT/SessionTestServlet to rhusar:8080
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (rhusar)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:05 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:05 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:07 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:27:07 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=rhusarRoute&Load=1"
[Wed Sep 07 15:27:07 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:27:07 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (rhusar)
[Wed Sep 07 15:27:07 2011] [debug] proxy_util.c(2067): proxy: connecting http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:27:07 2011] [debug] proxy_util.c(2193): proxy: connected http://rhusar:8080/ to rhusar:8080
[Wed Sep 07 15:27:07 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (rhusar)
[Wed Sep 07 15:27:07 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:27:08 2011] [debug] mod_manager.c(1653): manager_trans STATUS (/)
[Wed Sep 07 15:27:08 2011] [debug] mod_manager.c(2296): manager_handler STATUS (/) processing: "JVMRoute=localhostRoute&Load=1"
[Wed Sep 07 15:27:08 2011] [debug] mod_manager.c(1394): Processing STATUS
[Wed Sep 07 15:27:08 2011] [debug] proxy_util.c(2011): proxy: http: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:08 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:27:08 2011] [debug] proxy_util.c(2193): proxy: connected http://localhost.localdomain:8080/ to localhost.localdomain:8080
[Wed Sep 07 15:27:08 2011] [debug] proxy_util.c(2029): proxy: http: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:08 2011] [debug] mod_manager.c(2339): manager_handler STATUS OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans DISABLE-APP (/)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler DISABLE-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2F"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler DISABLE-APP OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans STOP-APP (/)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler STOP-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2F"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler STOP-APP OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans DISABLE-APP (/)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler DISABLE-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2FSessionTest-2.0-SNAPSHOT"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler DISABLE-APP OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans STOP-APP (/)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler STOP-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2FSessionTest-2.0-SNAPSHOT"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler STOP-APP OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans REMOVE-APP (/)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler REMOVE-APP (/) processing: "JVMRoute=rhusarRoute&Alias=default-host%2Clocalhost%2Cexample.com&Context=%2FSessionTest-2.0-SNAPSHOT"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler REMOVE-APP OK
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1653): manager_trans REMOVE-APP (/*)
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2296): manager_handler REMOVE-APP (/NODE_COMMAND) processing: "JVMRoute=rhusarRoute"
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(1133): process_node_cmd 4 processing node: 1
[Wed Sep 07 15:27:12 2011] [debug] mod_manager.c(2339): manager_handler REMOVE-APP OK
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(232): Created: reusing worker for http://rhusar:8080
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(232): Created: reusing worker for http://rhusar:8080
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13913 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13916 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 129
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 129
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(232): Created: reusing worker for http://rhusar:8080
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13999 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 129
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(622): update_workers_node starting
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(232): Created: reusing worker for http://rhusar:8080
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(334): proxy: initialized worker 1 in child 13912 for (rhusar) min=0 max=25 smax=25
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(392): Created: worker for http://rhusar:8080 1 (status): 129
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(637): update_workers_node done
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(549): remove_workers_node (helper) 0 rhusarRoute
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:13 2011] [error] proxy: CLUSTER: (balancer://RadoCluster). All workers are in error state for route (rhusarRoute)
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:13 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:13 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:13 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:13 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:13 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:14 2011] [error] proxy: CLUSTER: (balancer://RadoCluster). All workers are in error state for route (rhusarRoute)
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:14 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:14 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:14 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:14 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:14 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:15 2011] [error] proxy: CLUSTER: (balancer://RadoCluster). All workers are in error state for route (rhusarRoute)
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:15 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:15 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:15 2011] [debug] proxy_util.c(2193): proxy: connected /favicon.ico to localhost.localdomain:8080
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_http.c(1732): proxy: start body send
[Wed Sep 07 15:27:15 2011] [debug] mod_proxy_http.c(1836): proxy: end body send
[Wed Sep 07 15:27:15 2011] [debug] proxy_util.c(2029): proxy: HTTP: has released connection for (localhost.localdomain)
[Wed Sep 07 15:27:16 2011] [debug] mod_proxy_cluster.c(1839): cluster: Found value JdUhLYsBvQk7lnJtnEUqJe91.rhusarRoute for stickysession JSESSIONID|jsessionid
[Wed Sep 07 15:27:16 2011] [debug] mod_proxy_cluster.c(2208): cluster: Using route rhusarRoute
[Wed Sep 07 15:27:16 2011] [error] proxy: CLUSTER: (balancer://RadoCluster). All workers are in error state for route (rhusarRoute)
[Wed Sep 07 15:27:16 2011] [debug] mod_proxy_cluster.c(1441): proxy: byrequests balancer DONE (http://localhost.localdomain:8080)
[Wed Sep 07 15:27:16 2011] [debug] mod_proxy.c(993): Running scheme balancer handler (attempt 0)
[Wed Sep 07 15:27:16 2011] [debug] mod_proxy_http.c(1962): proxy: HTTP: serving URL http://localhost.localdomain:8080/favicon.ico
[Wed Sep 07 15:27:16 2011] [debug] proxy_util.c(2011): proxy: HTTP: has acquired connection for (localhost.localdomain)
[Wed Sep 07 15:27:16 2011] [debug] proxy_util.c(2067): proxy: connecting http://localhost.localdomain:8080/favicon.ico to localhost.localdomain:8080
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] Created: (MODCLUSTER-259) Load-demo application does not work with AS7
by Michal Babacek (JIRA)
Load-demo application does not work with AS7
---------------------------------------------
Key: MODCLUSTER-259
URL: https://issues.jboss.org/browse/MODCLUSTER-259
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.1.3.Final, 1.1.2.Final
Reporter: Michal Babacek
Assignee: Paul Ferraro
Fix For: 1.1.4.Final
It is not possible to use the [Load-demo application|http://bit.ly/qbRyC5] with AS7 7.1.0-SNAPSHOT.
It appears that LoadServlet is looking for things in JMX that aren't in JMX anymore in AS7, as [~brian.stansberry ] confirmed.
{code:java}
14:32:55,851 INFO [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "load-demo.war"
14:33:01,880 INFO [org.jboss.modcluster.ModClusterService] (ContainerBackgroundProcessor[StandardEngine[jboss.web]]) Engine [jboss.web] will use jvmRoute: 01node
14:33:01,987 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/load-demo]] (http--127.0.0.1-8080-2) StandardWrapper.Throwable: java.lang.NoClassDefFoundError: org/apache/catalina/ServerFactory
at org.jboss.modcluster.demo.servlet.LoadServlet.findService(Unknown Source) [classes:]
at org.jboss.modcluster.demo.servlet.LoadServlet.init(Unknown Source) [classes:]
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:952) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:188) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:139) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(CatalinaContext.java:285)
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invoke(CatalinaContext.java:261)
at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:123) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:89) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:88) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:56) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:123) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:89) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:88) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:56) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:154) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:952) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
Caused by: java.lang.ClassNotFoundException: org.apache.catalina.ServerFactory from [Module "deployment.load-demo.war:main" from Service Module Loader]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:191)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:361)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:333)
at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:310)
at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:103)
... 26 more
14:33:01,989 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/load-demo].[record]] (http--127.0.0.1-8080-2) Allocate exception for servlet record: java.lang.ClassNotFoundException: org.apache.catalina.ServerFactory from [Module "deployment.load-demo.war:main" from Service Module Loader]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:191)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:361)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:333)
at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:310)
at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:103)
at org.jboss.modcluster.demo.servlet.LoadServlet.findService(Unknown Source) [classes:]
at org.jboss.modcluster.demo.servlet.LoadServlet.init(Unknown Source) [classes:]
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:952) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:188) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:139) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(CatalinaContext.java:285)
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invoke(CatalinaContext.java:261)
at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:123) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:89) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:88) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:56) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:123) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:89) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:88) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:56) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:154) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:952) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]
at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
{code}
It is quite crucial for Mod_cluster + AS7 testing to have this fixed somehow :)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years