-->
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.  [ 1 post ] 
Author Message
 Post subject: Invalid column name 'col_0_0_' using SQL Server JDBC driver
PostPosted: Mon May 22, 2006 11:37 am 
Newbie

Joined: Mon May 22, 2006 9:27 am
Posts: 3
Location: Nigeria
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hi all,

I am currently using hibernate to connect to a view in an SQL Server database 'Server A'. Server A references tables on another SQL Server on another computer 'Server B'.

The view seems ok. However, whenever i run the simple hql
Quote:
from CashTransaction

to read the view via hibernate, i get the errors:

Code:
org.hibernate.exception.GenericJDBCException
could not execute query
SQL: select cashtransa0_.tranNo as col_0_0_ from CashTransaction cashtransa0_ 
SQLState: HY000 
errorCode: 8180 
messages: could not execute query
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.

throwableCount: 3 
throwables: org.hibernate.exception.GenericJDBCException: could not execute query
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.

   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
SQLState: HY000 
errorCode: 8180 
   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.
SQLState: 42S22 
errorCode: 207 


The full stack trace and hibernate logs are provided below.
I pasted the generated SQL in SQL Server Query Analyzer and it runs perfect. Is it possible that there is a problem with the Microsoft JDBC driver i'm using? or am i getting a misleading error message. I have searched to forum to some extent and tho i found similar problems, i have found divergent answers that dont solve my situation.

I would appreciate any help whatsoever on this issue as i need to figure it out on time


Hibernate version: 3.0.5

Mapping documents:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.dudu.firstCustodian.report">
<class name="CashTransaction">
<id name="id">
<!--<generator class="increment"/>-->
</id>
<property name="valuedate"/>
<property name="tranNo"/>
<property name="categoryCode"/>
<property name="amount"/>
<property name="direction"/>
</class>
</hibernate-mapping>
Code between sessionFactory.openSession() and session.close():

Full stack trace of any exception that occurs:
Code:
org.hibernate.exception.GenericJDBCException
could not execute query
SQL: select cashtransa0_.id as id, cashtransa0_.valuedate as valuedate13_, cashtransa0_.tranNo as tranNo13_, cashtransa0_.categoryCode as category4_13_, cashtransa0_.amount as amount13_, cashtransa0_.direction as direction13_ from CashTransaction cashtransa0_ 
SQLState: HY000 
errorCode: 8180 
messages: could not execute query
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.

throwableCount: 3 
throwables: org.hibernate.exception.GenericJDBCException: could not execute query
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.

   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
SQLState: HY000 
errorCode: 8180 
   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.
SQLState: 42S22 
errorCode: 207 
Stack Trace:
com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.openCursor(Unknown Source)
com.microsoft.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.commonExecute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
com.microsoft.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:120)
org.hibernate.loader.Loader.getResultSet(Loader.java:1272)
org.hibernate.loader.Loader.doQuery(Loader.java:391)
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:218)
org.hibernate.loader.Loader.doList(Loader.java:1593)
org.hibernate.loader.Loader.list(Loader.java:1577)
org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:395)
org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:271)
org.hibernate.impl.SessionImpl.list(SessionImpl.java:844)
org.hibernate.impl.QueryImpl.list(QueryImpl.java:74)
com.dudu.firstCustodian.report.tapestry.CashTransactionReport.getTransactions(CashTransactionReport.java:16)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
java.lang.reflect.Method.invoke(Unknown Source)
ognl.OgnlRuntime.invokeMethod(OgnlRuntime.java:491)
ognl.OgnlRuntime.getMethodValue(OgnlRuntime.java:904)
ognl.ObjectPropertyAccessor.getPossibleProperty(ObjectPropertyAccessor.java:54)
ognl.ObjectPropertyAccessor.getProperty(ObjectPropertyAccessor.java:122)
ognl.OgnlRuntime.getProperty(OgnlRuntime.java:1616)
ognl.ASTProperty.getValueBody(ASTProperty.java:96)
ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:170)
ognl.SimpleNode.getValue(SimpleNode.java:210)
ognl.Ognl.getValue(Ognl.java:333)
[b]Name and version of the database you are using:[/b]
SQL Server 2000

The generated SQL (show_sql=true):
select cashtransa0_.id as id, cashtransa0_.valuedate as valuedate13_, cashtransa0_.tranNo as tranNo13_, cashtransa0_.categoryCode as category4_13_, cashtransa0_.amount as amount13_, cashtransa0_.direction as direction13_ from CashTransaction cashtransa0_
Debug level Hibernate log excerpt:
Code:
org.hibernate.exception.GenericJDBCException
could not execute query
SQL: select cashtransa0_.id as id, cashtransa0_.valuedate as valuedate13_, cashtransa0_.tranNo as tranNo13_, cashtransa0_.categoryCode as category4_13_, cashtransa0_.amount as amount13_, cashtransa0_.direction as direction13_ from CashTransaction cashtransa0_ 
SQLState: HY000 
errorCode: 8180 
messages: could not execute query
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.

throwableCount: 3 
throwables: org.hibernate.exception.GenericJDBCException: could not execute query
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.

   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
SQLState: HY000 
errorCode: 8180 
   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'tranNo13_'.
SQLState: 42S22 
errorCode: 207 
Stack Trace:
com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.openCursor(Unknown Source)
com.microsoft.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.commonExecute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
com.microsoft.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:120)
org.hibernate.loader.Loader.getResultSet(Loader.java:1272)
org.hibernate.loader.Loader.doQuery(Loader.java:391)
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:218)
org.hibernate.loader.Loader.doList(Loader.java:1593)
org.hibernate.loader.Loader.list(Loader.java:1577)
org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:395)
org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:271)
org.hibernate.impl.SessionImpl.list(SessionImpl.java:844)
org.hibernate.impl.QueryImpl.list(QueryImpl.java:74)
com.dudu.firstCustodian.report.tapestry.CashTransactionReport.getTransactions(CashTransactionReport.java:16)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
java.lang.reflect.Method.invoke(Unknown Source)
ognl.OgnlRuntime.invokeMethod(OgnlRuntime.java:491)
ognl.OgnlRuntime.getMethodValue(OgnlRuntime.java:904)
ognl.ObjectPropertyAccessor.getPossibleProperty(ObjectPropertyAccessor.java:54)
ognl.ObjectPropertyAccessor.getProperty(ObjectPropertyAccessor.java:122)
ognl.OgnlRuntime.getProperty(OgnlRuntime.java:1616)
ognl.ASTProperty.getValueBody(ASTProperty.java:96)
ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:170)
ognl.SimpleNode.getValue(SimpleNode.java:210)
ognl.Ognl.getValue(Ognl.java:333)
---------------------------------------------------------------

org.hibernate.exception.GenericJDBCException
could not execute query
SQL: select cashtransa0_.tranNo as col_0_0_ from CashTransaction cashtransa0_ 
SQLState: HY000 
errorCode: 8180 
messages: could not execute query
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.

throwableCount: 3 
throwables: org.hibernate.exception.GenericJDBCException: could not execute query
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.

   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Statement(s) could not be prepared.
SQLState: HY000 
errorCode: 8180 
   
java.sql.SQLException
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid column name 'col_0_0_'.
SQLState: 42S22 
errorCode: 207 
Stack Trace:
com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.openCursor(Unknown Source)
com.microsoft.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.commonExecute(Unknown Source)
com.microsoft.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
com.microsoft.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:120)
org.hibernate.loader.Loader.getResultSet(Loader.java:1272)
org.hibernate.loader.Loader.doQuery(Loader.java:391)
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:218)
org.hibernate.loader.Loader.doList(Loader.java:1593)
org.hibernate.loader.Loader.list(Loader.java:1577)
org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:395)
org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:271)
org.hibernate.impl.SessionImpl.list(SessionImpl.java:844)
org.hibernate.impl.QueryImpl.list(QueryImpl.java:74)
com.dudu.firstCustodian.report.tapestry.CashTransactionReport.getTransactions(CashTransactionReport.java:16)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
java.lang.reflect.Method.invoke(Unknown Source)
ognl.OgnlRuntime.invokeMethod(OgnlRuntime.java:491)
ognl.OgnlRuntime.getMethodValue(OgnlRuntime.java:904)
ognl.ObjectPropertyAccessor.getPossibleProperty(ObjectPropertyAccessor.java:54)
ognl.ObjectPropertyAccessor.getProperty(ObjectPropertyAccessor.java:122)
ognl.OgnlRuntime.getProperty(OgnlRuntime.java:1616)
ognl.ASTProperty.getValueBody(ASTProperty.java:96)
ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:170)
ognl.SimpleNode.getValue(SimpleNode.java:210)
ognl.Ognl.getValue(Ognl.java:333)
ognl.Ognl.getValue(Ognl.java:310)
org.apache.tapestry.services.impl.ExpressionEvaluatorImpl.readCompiled(ExpressionEvaluatorImpl.java:91)
$ExpressionEvaluator_10b5dde77f9.readCompiled($ExpressionEvaluator_10b5dde77f9.java)
org.apache.tapestry.binding.ExpressionBinding.resolveExpression(ExpressionBinding.java:110)
org.apache.tapestry.binding.ExpressionBinding.getObject(ExpressionBinding.java:103)
org.apache.tapestry.binding.AbstractBinding.getObject(AbstractBinding.java:87)
$TableView_31.getSource($TableView_31.java)
org.apache.tapestry.contrib.table.components.TableView.generateTableModel(TableView.java:249)
org.apache.tapestry.contrib.table.components.TableViewSessionStateManager.recreateTableModel(TableViewSessionStateManager.java:65)
org.apache.tapestry.contrib.table.components.TableView.getTableModel(TableView.java:208)
org.apache.tapestry.contrib.table.components.TableView.validateValues(TableView.java:465)
org.apache.tapestry.contrib.table.components.TableView.renderComponent(TableView.java:497)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractComponent.renderBody(AbstractComponent.java:434)
org.apache.tapestry.components.RenderBody.renderComponent(RenderBody.java:44)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractComponent.renderBody(AbstractComponent.java:434)
org.apache.tapestry.html.Body.renderComponent(Body.java:129)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractPage.renderPage(AbstractPage.java:275)
org.apache.tapestry.engine.RequestCycle.renderPage(RequestCycle.java:366)
org.apache.tapestry.services.impl.ResponseRendererImpl.renderResponse(ResponseRendererImpl.java:71)
$ResponseRenderer_10b5dde7704.renderResponse($ResponseRenderer_10b5dde7704.java)
org.apache.tapestry.engine.PageService.service(PageService.java:68)
$IEngineService_10b5dde7772.service($IEngineService_10b5dde7772.java)
org.apache.tapestry.services.impl.EngineServiceOuterProxy.service(EngineServiceOuterProxy.java:66)
org.apache.tapestry.engine.AbstractEngine.service(AbstractEngine.java:248)
org.apache.tapestry.services.impl.InvokeEngineTerminator.service(InvokeEngineTerminator.java:60)
$WebRequestServicer_10b5dde774e.service($WebRequestServicer_10b5dde774e.java)
$WebRequestServicer_10b5dde774a.service($WebRequestServicer_10b5dde774a.java)
org.apache.tapestry.services.impl.WebRequestServicerPipelineBridge.service(WebRequestServicerPipelineBridge.java:56)
$ServletRequestServicer_10b5dde772e.service($ServletRequestServicer_10b5dde772e.java)
org.apache.tapestry.request.DecodedRequestInjector.service(DecodedRequestInjector.java:55)
$ServletRequestServicerFilter_10b5dde772a.service($ServletRequestServicerFilter_10b5dde772a.java)
$ServletRequestServicer_10b5dde7730.service($ServletRequestServicer_10b5dde7730.java)
org.apache.tapestry.multipart.MultipartDecoderFilter.service(MultipartDecoderFilter.java:52)
$ServletRequestServicerFilter_10b5dde7728.service($ServletRequestServicerFilter_10b5dde7728.java)
$ServletRequestServicer_10b5dde7730.service($ServletRequestServicer_10b5dde7730.java)
org.apache.tapestry.services.impl.SetupRequestEncoding.service(SetupRequestEncoding.java:53)
$ServletRequestServicerFilter_10b5dde772c.service($ServletRequestServicerFilter_10b5dde772c.java)
$ServletRequestServicer_10b5dde7730.service($ServletRequestServicer_10b5dde7730.java)
$ServletRequestServicer_10b5dde7722.service($ServletRequestServicer_10b5dde7722.java)
org.apache.tapestry.ApplicationServlet.doService(ApplicationServlet.java:123)
org.apache.tapestry.ApplicationServlet.doGet(ApplicationServlet.java:79)
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
java.lang.Thread.run(Unknown Source)
ognl.Ognl.getValue(Ognl.java:310)
org.apache.tapestry.services.impl.ExpressionEvaluatorImpl.readCompiled(ExpressionEvaluatorImpl.java:91)
$ExpressionEvaluator_10b5de1f306.readCompiled($ExpressionEvaluator_10b5de1f306.java)
org.apache.tapestry.binding.ExpressionBinding.resolveExpression(ExpressionBinding.java:110)
org.apache.tapestry.binding.ExpressionBinding.getObject(ExpressionBinding.java:103)
org.apache.tapestry.binding.AbstractBinding.getObject(AbstractBinding.java:87)
$TableView_31.getSource($TableView_31.java)
org.apache.tapestry.contrib.table.components.TableView.generateTableModel(TableView.java:249)
org.apache.tapestry.contrib.table.components.TableViewSessionStateManager.recreateTableModel(TableViewSessionStateManager.java:65)
org.apache.tapestry.contrib.table.components.TableView.getTableModel(TableView.java:208)
org.apache.tapestry.contrib.table.components.TableView.validateValues(TableView.java:465)
org.apache.tapestry.contrib.table.components.TableView.renderComponent(TableView.java:497)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractComponent.renderBody(AbstractComponent.java:434)
org.apache.tapestry.components.RenderBody.renderComponent(RenderBody.java:44)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractComponent.renderBody(AbstractComponent.java:434)
org.apache.tapestry.html.Body.renderComponent(Body.java:129)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.BaseComponent.renderComponent(BaseComponent.java:92)
org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:617)
org.apache.tapestry.AbstractPage.renderPage(AbstractPage.java:275)
org.apache.tapestry.engine.RequestCycle.renderPage(RequestCycle.java:366)
org.apache.tapestry.services.impl.ResponseRendererImpl.renderResponse(ResponseRendererImpl.java:71)
$ResponseRenderer_10b5de1f211.renderResponse($ResponseRenderer_10b5de1f211.java)
org.apache.tapestry.engine.PageService.service(PageService.java:68)
$IEngineService_10b5de1f27f.service($IEngineService_10b5de1f27f.java)
org.apache.tapestry.services.impl.EngineServiceOuterProxy.service(EngineServiceOuterProxy.java:66)
org.apache.tapestry.engine.AbstractEngine.service(AbstractEngine.java:248)
org.apache.tapestry.services.impl.InvokeEngineTerminator.service(InvokeEngineTerminator.java:60)
$WebRequestServicer_10b5de1f25b.service($WebRequestServicer_10b5de1f25b.java)
$WebRequestServicer_10b5de1f257.service($WebRequestServicer_10b5de1f257.java)
org.apache.tapestry.services.impl.WebRequestServicerPipelineBridge.service(WebRequestServicerPipelineBridge.java:56)
$ServletRequestServicer_10b5de1f23b.service($ServletRequestServicer_10b5de1f23b.java)
org.apache.tapestry.request.DecodedRequestInjector.service(DecodedRequestInjector.java:55)
$ServletRequestServicerFilter_10b5de1f237.service($ServletRequestServicerFilter_10b5de1f237.java)
$ServletRequestServicer_10b5de1f23d.service($ServletRequestServicer_10b5de1f23d.java)
org.apache.tapestry.multipart.MultipartDecoderFilter.service(MultipartDecoderFilter.java:52)
$ServletRequestServicerFilter_10b5de1f235.service($ServletRequestServicerFilter_10b5de1f235.java)
$ServletRequestServicer_10b5de1f23d.service($ServletRequestServicer_10b5de1f23d.java)
org.apache.tapestry.services.impl.SetupRequestEncoding.service(SetupRequestEncoding.java:53)
$ServletRequestServicerFilter_10b5de1f239.service($ServletRequestServicerFilter_10b5de1f239.java)
$ServletRequestServicer_10b5de1f23d.service($ServletRequestServicer_10b5de1f23d.java)
$ServletRequestServicer_10b5de1f22f.service($ServletRequestServicer_10b5de1f22f.java)
org.apache.tapestry.ApplicationServlet.doService(ApplicationServlet.java:123)
org.apache.tapestry.ApplicationServlet.doGet(ApplicationServlet.java:79)
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
java.lang.Thread.run(Unknown Source)


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

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.