-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 12 posts ] 
Author Message
 Post subject: Cannot open connection. Please help !
PostPosted: Sun Nov 14, 2004 5:01 am 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
I'm using c3p0 connection pool. Sometime it throws a Exception cannjot open connection. Please check c3p0 configuration below for me. Why does that error occur. It is my nightmare, my application do not work stable since 4 months ago.

This is my c3p0 configuration

<property name="c3p0.min_size">5</property>
<property name="c3p0.max_size">20</property>
<property name="c3p0.timeout">0</property>
<property name="c3p0.max_statements">0</property>
<property name="cache.use_query_cache">true</property>
<property name="c3p0.idle_test_period">10</property>
<property name="c3p0.initialPoolSize">5</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<property name="c3p0.autoCommitOnClose">false</property>
<property name="c3p0.forceIgnoreUnresolvedTransactions">false</property>
<property name="c3p0.numHelperThreads">3</property>
<property name="c3p0.factoryClassLocation">null</property>




Hibernate version: 2.1

Mapping documents:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 2.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<!-- a SessionFactory instance listed as /jndi/name -->
<session-factory name="hibernate/SessionFactory">
<!-- properties -->
<property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property>
<property name="connection.username">tlaptop_tlaptopt</property>
<property name="connection.password">hwfortlaptop</property>
<property name="connection.url">jdbc:mysql://localhost:3306/tlaptop_tlaptop?useUnicode=true&amp;characterEncoding=utf8</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="transaction.factory_class">net.sf.hibernate.transaction.JDBCTransactionFactory</property>

<property name="c3p0.min_size">5</property>
<property name="c3p0.max_size">20</property>
<property name="c3p0.timeout">0</property>
<property name="c3p0.max_statements">0</property>
<property name="cache.use_query_cache">true</property>
<property name="c3p0.idle_test_period">10</property>
<property name="c3p0.initialPoolSize">5</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<property name="c3p0.autoCommitOnClose">false</property>
<property name="c3p0.forceIgnoreUnresolvedTransactions">false</property>
<property name="c3p0.numHelperThreads">3</property>
<property name="c3p0.factoryClassLocation">null</property>


<!-- mapping files -->
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Product.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/News.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Ad.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Page.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Cat.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Fac.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/CatFac.hbm.xml"/>
<mapping resource="org/humanware/tlaptop/datamanagement/domain/Topic.hbm.xml"/>
<mapping resource="org/humanware/counter/datamanagement/domain/Counter.hbm.xml"/>
</session-factory>
</hibernate-configuration>




























Code between sessionFactory.openSession() and session.close():

Full stack trace of any exception that occurs:

Name and version of the database you are using: Mysql 4.0

The generated SQL (show_sql=true):

Debug level Hibernate log excerpt:


Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 15, 2004 1:16 am 
C3P0 Developer
C3P0 Developer

Joined: Tue Jan 06, 2004 8:58 pm
Posts: 145
Can you post the full stack trace of the Exception you're seeing?


Top
 Profile  
 
 Post subject: Cannot open connection. Please help !
PostPosted: Fri Nov 19, 2004 2:31 pm 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
I'm sorry, that exception occur not frequently then I cannot post that stack trace. When i used following extra configuration it seem cannot get any connection and hang (wait forever).

Quote:
<property name="c3p0.acquireRetryDelay">1000</property>
<property name="c3p0.acquireRetryAttempts">20</property>
<property name="c3p0.breakAfterAcquireFailure">false</property>


Top
 Profile  
 
 Post subject: Cannot open connection. Please help !
PostPosted: Fri Nov 19, 2004 3:26 pm 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
My application has just broken. This is it stack trace.

net.sf.hibernate.JDBCException: Cannot open connection
------------------
net.sf.hibernate.impl.BatcherImpl.openConnection(BatcherImpl.java:289)
net.sf.hibernate.impl.SessionImpl.connect(SessionImpl.java:3326)
net.sf.hibernate.impl.SessionImpl.connection(SessionImpl.java:3286)
net.sf.hibernate.impl.BatcherImpl.prepareQueryStatement(BatcherImpl.java:65)
net.sf.hibernate.loader.Loader.prepareQueryStatement(Loader.java:779)
net.sf.hibernate.loader.Loader.doQuery(Loader.java:265)
net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
net.sf.hibernate.loader.Loader.doList(Loader.java:1033)
net.sf.hibernate.loader.Loader.list(Loader.java:1024)
net.sf.hibernate.loader.CriteriaLoader.list(CriteriaLoader.java:118)
net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:3613)
net.sf.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:238)
dao.BaseDAO.findAll(BaseDAO.java:300)
dao.BaseDAO.findAll(BaseDAO.java:266)
dao.BaseDAO.findAll(BaseDAO.java:251)
delegate.NewsDisplayDelegate.getAllNews(NewsDisplayDelegate.java:25)
delegate.DisplayDelegateImp.getAllNews(DisplayDelegateImp.java:80)
org.apache.jsp.testnews_jsp._jspService(testnews_jsp.java:56)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:89)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:492)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:324)
org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:395)
org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:673)
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615)
org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
java.lang.Thread.run(Thread.java:534)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 22, 2004 4:36 am 
C3P0 Developer
C3P0 Developer

Joined: Tue Jan 06, 2004 8:58 pm
Posts: 145
Henry,

Two things:

1) your configuration of c3p0 will not take hold as you intend it to. less common c3p0 configuration parameters need to be set in a file called c3p0.properties, not in your hibernate configuration. the few c3p0 config parameters that are known to, and treated specially by, hibernate, MUST be set in your hibernate configuration.

The following c3p0 parameters MUST be set using their hibernate-config mapped equivalents, in your hibernate config file:

c3p0.minPoolSize -> hibernate.c3p0.min_size
c3p0.maxPoolSize -> hibernate.c3p0.max_size
c3p0.maxIdleTime -> hibernate.c3p0.timeout
c3p0.maxStatements -> hibernate.c3p0.max_statements
c3p0.acquireIncrement -> hibernate.c3p0.acquire_increment
c3p0.testConnectionOnCheckout -> hibernate.c3p0.validate
c3p0.idleConnectionTestPeriod -> hibernate.c3p0.idle_test_period

Again, all other c3p0 config properties MUST be set in a file called c3p0.properties, which should be directly in your application's CLASSPATH. (The file is read as a resource called "/c3p0.properties".)

This bifurcation of configuration is very confusing, I know. I hope to work with the hibernate folks to resolve the issue. But for now, there it is.

2) regarding your stack trace -- i'm not sure what's going on... your thread is seeing an Exception before it even touches any c3p0 code, or any hibernate connection provider. hopefully someone better versed in the ways of hibernate can explain to you what's going on. Perhaps, in your hibernate config, explicitly setting hibernate.connection.provider_class to net.sf.hibernate.connection.C3P0ConnectionProvider would help?

Good luck!

Steve (c3p0 maintainer)


Top
 Profile  
 
 Post subject: Cannot open connection. Please help !
PostPosted: Mon Nov 22, 2004 4:31 pm 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
Thank you, Steve

I've changed my configuration as you recommended and wait (pray) for and lucky result. :-).
I tried many case of configuration, but none of them could throw that error away. Maybe i will disturb you again (I hope not). Thank you.

Henrr Le


Top
 Profile  
 
 Post subject: Cannot open connection. Please help !
PostPosted: Mon Nov 22, 2004 5:11 pm 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
Hello Steve

I have a bad news. Your suggestion is not solve my problem. I't fail more frequent. My last configuration take 1 week to fail (make caller wait forever but yours break at once). There are configuration as you recommended. I'm using hostforweb hosting service (www.hostforweb.com). I do not know why.

In /c3p0.properties

c3p0.acquireRetryDelay=1000
c3p0.acquireRetryAttempts=20
c3p0.breakAfterAcquireFailure=false

In /hibernate-cfg.xml
...
<property name="connection.provider_class">net.sf.hibernate.connection.C3P0ConnectionProvider</property>

...
<!-- connection pool -->
<property name="c3p0.minPoolSize">5</property>
<property name="c3p0.maxPoolSize">40</property>
<property name="c3p0.maxIdleTime">20</property>
<property name="c3p0.maxStatements">0</property>
<property name="c3p0.acquire_increment">1</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<property name="c3p0.idleConnectionTestPeriod">1800</property>

...


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 01, 2004 6:38 am 
C3P0 Developer
C3P0 Developer

Joined: Tue Jan 06, 2004 8:58 pm
Posts: 145
Henry,

your c3p0.properties file looks good, but your hibernate config needs to use hibernate-mapped versions of c3p0's config parameters. (i know this is very confusing... hopefully the bifurcated configuration will be resolved soon.)

Anyway, your hibernate c3p0 config should look like this:

<!-- connection pool -->
<property name="c3p0.min_size">5</property>
<property name="c3p0.max_size">40</property>
<property name="c3p0.timeout">20</property>
<property name="c3p0.max_statements">0</property>
<property name="c3p0.acquire_increment">1</property>
<property name="c3p0.validate">true</property>
<property name="c3p0.idle_test_period">1800</property>

For the moment, and confusingly, c3p0 and hibernate simply have different names for the same parameters.

NOTE: your "timeout" and "idle_test_period" are inconsistent. you have the pool set up to test idle connections every half hour, but only to allow Connections to remain idle for 20 seconds before being purged from the pool. I'd switch timeout to something like 7200.

All of this said, the stack trace of a problem you posted earlier never even made it into c3p0-related code. If your application continues to break, please search your log files (it'll be wherever standard error/System.err gets logged) for an earlier stack trace, maybe search for the String c3p0, so I can get a better idea of where it's breaking if it is a c3p0 issue.

smiles,
steve


Top
 Profile  
 
 Post subject: Cannot open connection. Please help !
PostPosted: Mon Dec 13, 2004 4:06 pm 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
Hi swaldman

My app has not broken since dec 01. I think that problem maybe is resolved. If I have bad news I will ask you for help soon.

Thank you.

Henry Le


Top
 Profile  
 
 Post subject: can not open connection
PostPosted: Sat Dec 18, 2004 1:08 am 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
hi swaldman

Now it throw new Exception. Please give me your advice.

Thank you

Henry Le

java.lang.InternalError: connectionErrorOcccurred() should only be called for errors fatal to the Connection.
at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$ConnectionEventListenerImpl.connectionErrorOccurred(C3P0PooledConnectionPool.java:260)
at com.mchange.v2.c3p0.util.ConnectionEventSupport.fireConnectionErrorOccurred(ConnectionEventSupport.java:70)
at com.mchange.v2.c3p0.impl.NewPooledConnection.fireConnectionErrorOccurred(NewPooledConnection.java:262)
at com.mchange.v2.c3p0.impl.NewPooledConnection.markClosedProxyConnection(NewPooledConnection.java:205)
at com.mchange.v2.c3p0.impl.NewProxyConnection.close(NewProxyConnection.java:1252)
at net.sf.hibernate.connection.C3P0ConnectionProvider.closeConnection(C3P0ConnectionProvider.java:40)
at net.sf.hibernate.impl.BatcherImpl.closeConnection(BatcherImpl.java:305)
at net.sf.hibernate.impl.SessionImpl.disconnect(SessionImpl.java:3352)
at net.sf.hibernate.impl.SessionImpl.close(SessionImpl.java:576)


Top
 Profile  
 
 Post subject:
PostPosted: Tue Dec 21, 2004 11:08 pm 
C3P0 Developer
C3P0 Developer

Joined: Tue Jan 06, 2004 8:58 pm
Posts: 145
Henry,

First, thanks! This stack trace is the result of a bug, which will be fixed in the next minor c3p0 release. When that's out (very soon), you can upgrade and you should never see this again.

In general, you should see this very infrequently. It would occur when for some reason a Connection that behaved perfectly until pool-check-in fails to "reset" at the time of being close()ed, or checked-in.

If you are seeing this with any frequency or regularity at all, please upgrade to c3p0-0.8.5-pre9, which fixes a bug where reset() overly aggressively tried to use a feature that some databases don't support.

Also, given the stack trace that you report, there was probably another stack trace logged prior to that, which represents the original failure in reset(). I'd be interested in seeing that stack trace.

Anyway, thanks again for pointing out the problem!

Steve (c3p0-maintainer)


Top
 Profile  
 
 Post subject: can not open connection
PostPosted: Wed Dec 22, 2004 3:34 am 
Newbie

Joined: Thu Sep 30, 2004 11:41 pm
Posts: 11
hi swaldman

It is here. Thank you for support. I'm waiting for new release.

Henry Le

2004-12-19 08:07:20 StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
javax.servlet.ServletException: Servlet execution threw an exception
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.humanware.tlaptop.util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:492)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:324)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:395)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:673)
at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615)
at org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
at java.lang.Thread.run(Thread.java:534)
----- Root Cause -----
java.lang.InternalError: connectionErrorOcccurred() should only be called for errors fatal to the Connection.
at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$ConnectionEventListenerImpl.connectionErrorOccurred(C3P0PooledConnectionPool.java:260)
at com.mchange.v2.c3p0.util.ConnectionEventSupport.fireConnectionErrorOccurred(ConnectionEventSupport.java:70)
at com.mchange.v2.c3p0.impl.NewPooledConnection.fireConnectionErrorOccurred(NewPooledConnection.java:262)
at com.mchange.v2.c3p0.impl.NewPooledConnection.markClosedProxyConnection(NewPooledConnection.java:205)
at com.mchange.v2.c3p0.impl.NewProxyConnection.close(NewProxyConnection.java:1252)
at net.sf.hibernate.connection.C3P0ConnectionProvider.closeConnection(C3P0ConnectionProvider.java:40)
at net.sf.hibernate.impl.BatcherImpl.closeConnection(BatcherImpl.java:305)
at net.sf.hibernate.impl.SessionImpl.disconnect(SessionImpl.java:3352)
at net.sf.hibernate.impl.SessionImpl.close(SessionImpl.java:576)
at org.humanware.tlaptop.datamanagement.dao.BaseDAO.closeSession(BaseDAO.java:170)
at org.humanware.tlaptop.datamanagement.dao.ProductDAO.findByPrimaryKey(ProductDAO.java:144)
at org.humanware.tlaptop.delegate.ProductDisplayDelegate.getProductById(ProductDisplayDelegate.java:57)
at org.humanware.tlaptop.delegate.DisplayDelegateImp.getProductById(DisplayDelegateImp.java:54)
at org.humanware.tlaptop.display.product.ProductDetailDisplayAction.execute(ProductDetailDisplayAction.java:31)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.humanware.tlaptop.util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:492)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:324)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:395)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:673)
at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615)
at org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
at java.lang.Thread.run(Thread.java:534)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 12 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.