[Installation, Configuration & DEPLOYMENT] - Jkmount /jmx-console/* not working in Apache
by sbarreros
My last post is quite lengthy and I think I'll have a better chance at getting an answer for this question, but if somebody can answer my last post I'll be glad or even impressed.
I have Apache2 and Jboss 4 running on the same machine, when I set
JkMount /* jboss
I can get to my http://localhost/jmx-console with no problem, but if I set
JkMount /jmx-console/* jboss
in my configuration I get the following error message.
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (486)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (500)]: Attempting to map URI '/jmx-console'
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (618)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (486)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (500)]: Attempting to map URI '/jmx-console'
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (618)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (486)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (500)]: Attempting to map URI '/error/HTTP_NOT_FOUND.html.var'
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (618)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Sun Dec 09 23:06:09 2007] [jk_uri_worker_map.c (486)]: Into jk_uri_worker_map_t::map_uri_to_worker
This is my modjk configuration file for apache
===============================================
LoadModule jk_module /usr/lib/apache2/mod_jk.so
JkWorkersFile /etc/apache2/conf.d/workers.properties
#JkShmFile /var/log/apache2/mod_jk.shm
JkLogFile /var/log/apache2/mod_jk.log
JkLogLevel debug
JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
JkLogLevel debug
JkMount /* jboss
This is my workers.properties file
==============================================
worker.list=jboss
worker.jboss.port=8009
worker.jboss.host=localhost
worker.jboss.type=ajp13
worker.jboss.lbfactor=1
Any help would be greatly appreciated...
Here is my last post if anyone is interested.
http://jboss.org/index.html?module=bb&op=viewtopic&t=125531
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111783#4111783
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111783
18 years, 4 months
[JBoss Seam] - Re: s:decorate looses form values on validation error
by utiba_davidr
Hey,
I figured out what it was and it ties in with another issue I have been having. I have created a custom resource resolver that loads resources from JAR files.. Well, actually I have created a deployer that registers resources that are dropped into the deploy directory and the custom resource resolver looks to that service for resources. The issue here is that the template being included is loaded in such a way, and suffers from this fate:
INFO: Facelet[/file:/usr/local/jboss/jboss-4.2.2.GA/server/default/tmp/deploy/tmp35770wt_umarket_mobilink-dev.ear-contents/wt_umarket_common_mobilink-dev.uiar!/WEB-INF/templates/fragment/edit.xhtml] was modified @ 10:14:38, flushing component applied @ 10:14:27
I feel that this 'flush' is what is causing the loss of information - my question is how do I prevent it flushing a component that has not been modified?
p.s. Sorry to be a bit heavy footed earlier, its quite frustrating not having other people on hand to ask questions of and having to wait around on a forum response.
Cheers,
David
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111781#4111781
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111781
18 years, 4 months
[Installation, Configuration & DEPLOYMENT] - Re: exception occurs while deployingDB2JDBC driver jar
by PeterJ
Which version of JBossASA are you using (as far as I know, there was never an EJB3 that went with 4.0.3)? Also, what version of EJB3 did you install?
Also, looking at the code, I don't see how the JDBC JAR file could be affecting this (though, considering interdependencies, anything is possible). The code that blows up looks like it is scanning the EJB classes in an EJB jar file looking for annotations. Do this. Add the option "-verbose:class" to the JAVA_OPTS and run it again. This causes the JVM to print out the location of every class file loaded. Redirect stdout to a file because you will get a lot of output. Start by posting the last 20 or so class files loaded before this error occurs.
Also, just to be sure, replace the older version of the JDBC JAR file and see if things still run.
Finally, do a 'jar -tf jdbc.jar', where jdbc.jar is the name of the JDBC JAR file, and post the names of all classes that are not from IBM.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4111778#4111778
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4111778
18 years, 4 months