[JBoss Tools (users)] - Richfaces 3.2 Problem
by rsarto
Hi,
I'm using Eclipse 3.3.2, webtools 2.0.1, jboss tools 2.1.1, jboss as 4.2.2 GA. When I try to upgrade to Richfaces 3.2 copying the 3 .jars to web-inf/lib the app doesnt work anymore.
Any Help ?
Exception :
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:313)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:85)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:147)
org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:256)
org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:362)
org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:488)
org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:60)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.jboss.seam.debug.hot.HotDeployFilter.doFilter(HotDeployFilter.java:68)
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
java.lang.Thread.run(Unknown Source)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160352#4160352
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4160352
17 years, 10 months
[Installation, Configuration & DEPLOYMENT] - JVM or JBoss cache of DNS? trying to configure mysql-ds.xml
by stevejb
Hello,
I am trying to start a jboss messaging server, connecting to a mysql database. I have my mysql-ds.xml configured with the following line:
<connection-url>jdbc:mysql://int-mysql64-master.mydomain.com:3306/jbossdb</connection-url>
We have a cluster of mysql servers, and we have DNS set up such that int-mysql64-master.mydomain.com always resolves to the master mysql server. Recently, the IP address of our master server changed, and our DNS was updated. For example, I can ping int-mysql64-master.mydomain.com and it resolves to the correct box. However, it seems that when I try to start jboss with ./run.sh -c messaging , it is still trying to connect to the old server, according to the server.log file. Also, even when I make changes to mysql-ds.xml and try to run ./run.sh, it is still trying to connect to the old address. How can I fix this? Is there some cache that I can flush? Is JVM or Jboss caching hostnames? Where are the IP/hostname maps stored, and how can I flush them?
-steve
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160351#4160351
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4160351
17 years, 10 months
[Clustering/JBoss] - Re: FailOver and Session Stickness Behaviour
by eduardo_thp
That's it !
It's possible to see it, because the 2 html results are concatenated..
The results from the pushlet that was on server1.. are still at the beginning of the HTML, then there are the contents from the pushlet that is on server2.
It's as if the loadbalancer(mod_jk) x browser connection stays alive, eventhough loadbalancer x server1 connection goes down.
eg.
<html><head>
<script type="text/javascript" src="file.js" ></script>
</head>
<body></body></html>
<script>parent.setServerName('server1');</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<html><head>
<script type="text/javascript" src="file.js" ></script>
</head>
<body></body></html>
<script>parent.setServerName('server2');</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160337#4160337
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4160337
17 years, 10 months