[JBossCache] - binding of DummyTransactionManager failed javax.naming.Namin
by jiafan1
I am JBoss TreeCache in Spring. When I run unit tests. Everything seems fine. But when I deploy the war file to tomcat, the following exception is thrown:
2006-09-27 15:33:00,321 ERROR [main] org.jboss.cache.transaction.DummyTransactionManager.getInstance (DummyTransactionManager.java:37) binding of DummyTransactionManager failed
javax.naming.NamingException: Context is read only
at org.apache.naming.NamingContext.checkWritable(NamingContext.java:902)
at org.apache.naming.NamingContext.bind(NamingContext.java:830)
at org.apache.naming.NamingContext.bind(NamingContext.java:170)
at org.apache.naming.NamingContext.bind(NamingContext.java:186)
at org.apache.naming.SelectorContext.bind(SelectorContext.java:170)
at javax.naming.InitialContext.bind(InitialContext.java:359)
at org.jboss.cache.transaction.DummyTransactionManager.getInstance(DummyTransactionManager.java:33)
at org.jboss.cache.GenericTransactionManagerLookup.getTransactionManager(GenericTransactionManagerLookup.java:76)
at org.jboss.cache.TreeCache._createService(TreeCache.java:1314)
at org.jboss.cache.TreeCache.createService(TreeCache.java:1300)
My jboss cache configuration file is as follows (the cache runs in standalone mode),
jboss:service=Naming
<!-- -->
jboss:service=TransactionManager
<!---->
<!-- Configure the TransactionManager -->
org.jboss.cache.GenericTransactionManagerLookup
<!-- -->
<!--
Node locking scheme:
OPTIMISTIC
PESSIMISTIC (default)
OPTIMISTIC
-->
<!--
Node locking level : SERIALIZABLE
REPEATABLE_READ (default)
READ_COMMITTED
READ_UNCOMMITTED
NONE
-->
REPEATABLE_READ
<!--
Valid modes are LOCAL
REPL_ASYNC
REPL_SYNC
INVALIDATION_ASYNC
INVALIDATION_SYNC
-->
REPL_SYNC
<!-- Name of cluster. Needs to be the same for all clusters, in order
to find each other
-->
JTVCORE-Cluster
<!-- JGroups protocol stack properties. Can also be a URL,
e.g. file:/home/bela/default.xml
-->
<UDP mcast_send_buf_size="32000"
mcast_port="45566"
ucast_recv_buf_size="64000"
mcast_addr="228.8.8.8"
bind_addr="10.1.11.8"
loopback="false"
mcast_recv_buf_size="64000"
max_bundle_size="60000"
max_bundle_timeout="30"
use_incoming_packet_handler="false"
use_outgoing_packet_handler="false"
ucast_send_buf_size="32000"
ip_ttl="32"
enable_bundling="false"/>
<PING timeout="2000"
num_initial_members="4"/>
<MERGE2 max_interval="10000"
min_interval="5000"/>
<FD timeout="2000"
max_tries="3"
shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK max_xmit_size="8192"
use_mcast_xmit="false"
gc_lag="50"
retransmit_timeout="600,1200,2400,4800"/>
<!--
- desired_avg_gossip: periodically sends STABLE messages around. 0 disables this
- max_bytes: max number of bytes received from anyone until a STABLE message is sent. Use either this or
desired_avg_gossip, but not both ! 0 disables it.
- stability_delay: range (number of milliseconds) that we wait until sending a STABILITY message.
This prevents STABILITY multicast storms. If max_bytes is used, this should be set to a low value (> 0 though !).
-->
<pbcast.STABLE stability_delay="1000"
desired_avg_gossip="20000"
max_bytes="0"/>
<FRAG frag_size="8192"
down_thread="false"
up_thread="false"/>
<VIEW_SYNC avg_send_interval="60000" down_thread="false" up_thread="false" />
<pbcast.GMS print_local_addr="true"
join_timeout="3000"
join_retry_timeout="2000"
shun="true"/>
<pbcast.STATE_TRANSFER
down_thread="false"
up_thread="false"/>
<!--
Whether or not to fetch state on joining a cluster
NOTE this used to be called FetchStateOnStartup and has been renamed to be more descriptive.
-->
<!-- -->
true
<!-- -->
<!--
The max amount of time (in milliseconds) we wait until the
initial state (ie. the contents of the cache) are retrieved from
existing members in a clustered environment
-->
20000
<!--
Number of milliseconds to wait until all responses for a
synchronous call have been received.
-->
20000
<!-- Max number of milliseconds to wait for a lock acquisition -->
15000
<!-- Name of the eviction policy class. -->
<!--attribute name="EvictionPolicyClass"></attribute-->
<!--
org.jboss.cache.eviction.LRUPolicy
-->
<!-- Specific eviction policy configurations. This is LRU -->
5
<!-- Cache wide default /com/jtv/core-->
5000
0
2000
0
10000
0
<!--
Indicate whether to use region based marshalling or not. Set this to true if you are running under a scoped
class loader, e.g., inside an application server. Default is "false".
-->
false
<!-- New 1.3.x cache loader config block -->
<!-- if passivation is true, only the first cache loader is used; the rest are ignored -->
true
/
false<!--false-->
<!-- we can now have multiple cache loaders, which get chained -->
org.jboss.cache.loader.FileCacheLoader
<!-- same as the old CacheLoaderConfig attribute -->
location=/tmp
<!-- whether the cache loader writes are asynchronous -->
false
<!-- only one cache loader in the chain may set fetchPersistentState to true.
An exception is thrown if more than one cache loader sets this to true. -->
true
<!-- determines whether this cache loader ignores writes - defaults to false. -->
false
Any hints about what is wrong?
Thanks in advance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974690#3974690
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974690
19 years, 7 months
[JBossWS] - WSDL mapping of java.util.Map is wrong
by vulkman
Hi there!
I've got a problem with the mapping of my return-value which is of type java.util.Map:
<snip>
public Map isAvailable(@WebParam(name="address") Address address...
</snip>
Using Jboss 4.0.3. and JAX-RPC this is resulting in the following WSDL-output:
<complexType name="map">
<complexContent>
<restriction base="soap11-enc:Array">
<attribute ref="soap11-enc:arrayType" wsdl:arrayType="tns:mapEntry[]"/>
</restriction>
</complexContent>
</complexType>
<complexType name="mapEntry">
<sequence>
<element name="key" type="anyType"/>
<element name="value" type="anyType"/>
</sequence>
</complexType>
Using JBoss 4.0.4. with JAX-WS it looks as follows:
<complexType name="Map">
<sequence>
<element name="empty" type="boolean"/>
</sequence>
</complexType>
So my question is: How can I change this type-translation?!
Please help me, I am quite desperate...
Kr,
Volker
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974689#3974689
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974689
19 years, 7 months
[Persistence, JBoss/CMP, Hibernate, Database] - Re: Hibernate and JBOSS JTA failed transactions
by ggreaves
Could you be more specific as to what you did to solve this. I am using a local-tx connection and still having the:
SessionException: Session was already closed
when I try to manually close the session. BTW, this is specific behaviour to version 4.0.4. In 4.0.3, with the same connection and hibernate-service.xml, it works fine.
Here are the files in question:
=========== hibernate-service.xml ==========
<server>
| <mbean code="org.jboss.hibernate.jmx.Hibernate"
| name="jboss.har:service=Hibernate">
| <attribute name="DatasourceName">java:/CRMDS</attribute>
| <attribute name="Dialect">org.hibernate.dialect.MySQLDialect</attribute>
| <attribute name="SessionFactoryName">java:/hibernate/HibernateSessionFactory</attribute>
| <attribute name="CacheProviderClass">org.hibernate.cache.HashtableCacheProvider</attribute>
| <attribute name="Hbm2ddlAuto">update</attribute>
| <attribute name="ShowSqlEnabled">true</attribute>
| </mbean>
| </server>
=========== hibernate-service.xml ==========
=========== datasource ===============
<datasources>
| <local-tx-datasource>
| <jndi-name>CRMDS</jndi-name>
| <connection-url>jdbc:mysql://localhost:3306/crmdb</connection-url>
| <driver-class>org.gjt.mm.mysql.Driver</driver-class>
| <user-name>blah</user-name>
| <password>blah</password>
| <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter</exception-sorter-class-name>
| <!-- sql to call when connection is created
| <new-connection-sql>some arbitrary sql</new-connection-sql>
| -->
| <!-- sql to call on an existing pooled connection when it is obtained from pool
| <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
| -->
|
| <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) -->
| <metadata>
| <type-mapping>mySQL</type-mapping>
| </metadata>
| </local-tx-datasource>
| </datasources>
=========== datasource ===============
Any ideas?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974687#3974687
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974687
19 years, 7 months
[JBoss jBPM] - Re: BPEL - beta2
by KVAK_TNT
Problem found and solved.
I have forgotten to add my new wsdl to the bpel-application.xml
(This file can be found at \doc\atm\src\main\bpel\resources\WEB-INF\classes\)
By the way:
A question to this file:
In beta 1 there was more data in this file:
<partnerLinks>
|
| <partnerLink name="ticketRelation">
| <partnerRole>
| <wsa:EndpointReference>
| <wsa:Address>USE_ACTUAL_URI_FROM_CATALOG</wsa:Address>
| <wsa:ServiceName xmlns:serviceNS="urn:samples:ticket">serviceNS:ticketService</wsa:ServiceName>
| </wsa:EndpointReference>
| </partnerRole>
| </partnerLink>
|
| <partnerLink name="accountRelation">
| <partnerRole>
| <wsa:EndpointReference>
| <wsa:Address>USE_ACTUAL_URI_FROM_CATALOG</wsa:Address>
| <wsa:ServiceName xmlns:serviceNS="urn:samples:account">serviceNS:accountService</wsa:ServiceName>
| </wsa:EndpointReference>
| </partnerRole>
| </partnerLink>
|
| <partnerLink name="agilproRelation">
| <partnerRole>
| <wsa:EndpointReference>
| <wsa:Address>USE_ACTUAL_URI_FROM_CATALOG</wsa:Address>
| <wsa:ServiceName xmlns:serviceNS="urn:samples:agilpro">serviceNS:agilproService</wsa:ServiceName>
| </wsa:EndpointReference>
| </partnerRole>
| </partnerLink>
|
| </partnerLinks>
Isn't this code needed anymore?
Greetings
Claus
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974684#3974684
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974684
19 years, 7 months
[JBoss Seam] - Re: @Redirect issues - not redirecting to a page
by zzzz8
Hi Gavin,
Thanks for the quick response! For now, I just made message non-null, but I've come up with a slightly different error.:
ERROR 27-09 13:41:48,204 (ApplicationDispatcher.java:invoke:704) -Servlet.servi
| ce() for servlet jsp threw exception
| javax.faces.el.EvaluationException: Cannot get value for expression '#{systemSta
| tus.systemDatetime.time}'
| at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java
| :397)
| at javax.faces.component.UIOutput.getValue(UIOutput.java:75)
| at org.apache.myfaces.renderkit.RendererUtils.getStringValue(RendererUti
| ls.java:225)
| at org.apache.myfaces.renderkit.html.HtmlTextRendererBase.renderOutput(H
| tmlTextRendererBase.java:65)
| at org.apache.myfaces.renderkit.html.HtmlTextRendererBase.encodeEnd(Html
| TextRendererBase.java:53)
| at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:
| 331)
| at org.apache.myfaces.renderkit.RendererUtils.renderChild(RendererUtils.
| java:450)
| at org.apache.myfaces.renderkit.html.HtmlGridRendererBase.renderChildren
| (HtmlGridRendererBase.java:203)
| at org.apache.myfaces.renderkit.html.HtmlGridRendererBase.encodeEnd(Html
| GridRendererBase.java:85)
| at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:
| 331)
| at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:349)
| at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:253)
| at org.apache.myfaces.taglib.UIComponentBodyTagBase.doEndTag(UIComponent
| BodyTagBase.java:55)
| at org.apache.jsp.WEB_002dINF.faces.header.statusNoAjax_jspx._jspx_meth_
| h_panelGrid_0(org.apache.jsp.WEB_002dINF.faces.header.statusNoAjax_jspx:245)
| at org.apache.jsp.WEB_002dINF.faces.header.statusNoAjax_jspx._jspService
| (org.apache.jsp.WEB_002dINF.faces.header.statusNoAjax_jspx:92)
| at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
| .java:332)
| at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
| 14)
| at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
| atcher.java:672)
| at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationD
| ispatcher.java:574)
| at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDis
| patcher.java:499)
| at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary
| .java:966)
| at org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.jav
| a:614)
| at org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.java:99
| )
| at org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:135)
| at org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.java:760
| )
| at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(Inser
| tTag.java:892)
| at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:462)
|
| at org.apache.jsp.WEB_002dINF.faces.layout.informationBarLayout_jspx._js
| px_meth_tiles_insert_1(org.apache.jsp.WEB_002dINF.faces.layout.informationBarLay
| out_jspx:163)
| at org.apache.jsp.WEB_002dINF.faces.layout.informationBarLayout_jspx._js
| pService(org.apache.jsp.WEB_002dINF.faces.layout.informationBarLayout_jspx:64)
| at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
| .java:332)
| at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
| 14)
| at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
| atcher.java:672)
| at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationD
| ispatcher.java:574)
| at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDis
| patcher.java:499)
| at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary
| .java:966)
| at org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.jav
| a:614)
| at org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.java:99
| )
| at org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:135)
| at org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.java:760
| )
| at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(Inser
| tTag.java:892)
| at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:462)
|
| at org.apache.jsp.WEB_002dINF.faces.layout.headerLayout_jspx._jspx_meth_
| tiles_insert_0(org.apache.jsp.WEB_002dINF.faces.layout.headerLayout_jspx:109)
| at org.apache.jsp.WEB_002dINF.faces.layout.headerLayout_jspx._jspService
| (org.apache.jsp.WEB_002dINF.faces.layout.headerLayout_jspx:60)
| at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
| .java:332)
| at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
| 14)
| at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
| atcher.java:672)
| at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationD
| ispatcher.java:574)
| at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDis
| patcher.java:499)
| at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary
| .java:966)
| at org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.jav
| a:614)
| at org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.java:99
| )
| at org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:135)
| at org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.java:760
| )
| at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(Inser
| tTag.java:892)
| at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:462)
|
| at org.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx._jspx_meth_ti
| les_insert_0(org.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx:235)
| at org.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx._jspx_meth_f_
| subview_0(org.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx:171)
| at org.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx._jspService(o
| rg.apache.jsp.WEB_002dINF.faces.layout.mainLayout_jspx:92)
| at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
| .java:332)
| at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
| 14)
| at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
| atcher.java:672)
| at org.apache.catalina.core.ApplicationDispatcher.processRequest(Applica
| tionDispatcher.java:463)
| at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationD
| ispatcher.java:398)
| at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDis
| patcher.java:301)
| at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatc
| h(ServletExternalContextImpl.java:415)
| at org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl.dispatch(J
| spTilesViewHandlerImpl.java:233)
| at org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl.renderView
| (JspTilesViewHandlerImpl.java:219)
| at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:
| 352)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at test.RefreshRateFilter.doFilter(RefreshRateFilter.java:100)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at test.SecurityFilter.doFilter(SecurityFilter.
| java:93)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter
| .java:30)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(Exte
| nsionsFilter.java:122)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
| icationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
| ilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
| alve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
| alve.java:178)
| at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica
| torBase.java:524)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
| ava:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
| ava:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
| ve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
| a:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
| :869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
| rocessConnection(Http11BaseProtocol.java:667)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
| int.java:527)
| at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFol
| lowerWorkerThread.java:80)
| at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
| ool.java:684)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: java.lang.NullPointerException
| at org.jnp.interfaces.NamingContext.bind(NamingContext.java:557)
| at org.jnp.interfaces.NamingContext.bind(NamingContext.java:532)
| at javax.naming.InitialContext.bind(InitialContext.java:359)
| at org.jboss.seam.contexts.StatelessContext.set(StatelessContext.java:42
| )
| at org.jboss.seam.Component.handleFactoryMethodResult(Component.java:149
| 8)
| at org.jboss.seam.Component.getInstanceFromFactory(Component.java:1473)
| at org.jboss.seam.Component.getInstance(Component.java:1422)
| at org.jboss.seam.Component.getInstance(Component.java:1406)
| at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableR
| esolver.java:44)
| at org.apache.myfaces.el.ValueBindingImpl$ELVariableResolver.resolveVari
| able(ValueBindingImpl.java:569)
| at org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)
| at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:140)
| at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java
| :378)
| ... 119 more
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974682#3974682
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974682
19 years, 7 months