[Installation, Configuration & Deployment] - Need to place hibernate jars in ear
by nancy.aggarwal
Hello all,
I want to place my hibernate jars(particular version)which may be different from the jars placed in jboss/deploy/lib.
If i place them in my ear:i get classcast exception:
Caused by: java.lang.ClassCastException
| at org.hibernate.dialect.DialectFactory.buildDialect(DialectFactory.java:78)
org.hibernate.HibernateException: Could not instantiate dialect class
| at org.hibernate.dialect.DialectFactory.buildDialect(DialectFactory.java:84)
| at org.hibernate.dialect.DialectFactory.buildDialect(DialectFactory.java:42)
| at org.hibernate.cfg.SettingsFactory.determineDialect(SettingsFactory.java:397)
| at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:111)
| at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
| at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
| at org.jboss.hibernate.jmx.Hibernate.buildSessionFactory(Hibernate.java:231)
| at org.jboss.hibernate.jmx.Hibernate.startService(Hibernate.java:155)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| ---------------------------------
|
I have placed jboss-app.xml in ear meta-inf:
<!DOCTYPE jboss-app PUBLIC "-//JBoss//DTD J2EE Application 1.4//EN"
| "http://www.jboss.org/j2ee/dtd/jboss-app_4_0.dtd">
| <jboss-app>
| <loader-repository>abc:loader=abc.ear
| </loader-repository>
| <module>
| <har>abc.har</har>
| </module>
| </jboss-app>
|
Please tell how can i achieve this!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965435#3965435
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965435
19 years, 9 months
[EJB 3.0] - no local jndi binding for a simple ejb3 session bean
by jason_rency
hi all,
I got java.lang.NullPointerException when I was calling a simple ejb3 staless session been (deployed to jboss4.04GA) from my servlet, my web application and the ejb were packeged in the same ear. during the deployment I can't see a local jndi binding for this bean as well.
just wodering, do I need to configure something for this bean in ejb-jar.xml or jndi.properties as I think by default session beans will bind to JNDI in the form ejbName/remote for remote interfaces and ejbName/local in the case of local interfaces
here is the ejb interface:
package src.reg.server;
| import javax.ejb.Local;
|
| @Local()
| public interface token {
|
| public String issue(String uid, String PIN);
| }
here is the implementation:
package src.reg.server;
|
| import javax.ejb.Stateless;
| import javax.persistence.EntityManager;
| import javax.persistence.PersistenceContext;
|
| @Stateless()
| public class tokenAction implements token {
| public String issueKey(String username,String pin)
| {
| String temp = username +pin;
| return temp;
| }
| }
this is the servlet where I invoke the EJB bean;
| package src.reg.server;
|
| import java.text.*;
| import javax.servlet.*;
| import javax.servlet.http.*;
| import java.io.*;
| import javax.ejb.EJB;
|
| public class myservlet extends HttpServlet {
|
| @EJB
| private static token t;
| private String key = null ;
|
| protected void doPost(HttpServletRequest req, HttpServletResponse resp)
| throws ServletException,
| IOException {
| resp.setContentType("text/plain");
| PrintWriter out = resp.getWriter();
| String uid = req.getParameter("uid");
| String Pin = req.getParameter("passwd");
| key = t.issueKey(uid, Pin);//(here is the exception was thrown) out.println(key);
| }
|
| }
thanks a lot...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965434#3965434
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965434
19 years, 9 months
[JBoss jBPM] - Transaction demarcation in synchronous nodes
by jurglic
Hello there,
I have a problem with transaction demarcation in synchronous nodes. As far as I can see, the only simple way to enforce transaction demarcation is to set async="true" on the node element in process definition. But in my case, I want synchronous processing with transaction demarcation.
Imagine the following process (just sequential nodes):
1. start-node
2. task-node : userDataInput
3. action-node : creditCardAuthorization
4. action-node : processOrder
5. task-node : successMessage
5. end-state
In this example, I want synchronous processing over all nodes. Initially process is started and task instance is created (userDataInput). After the user completes the first task (userDataInput) the process must continue with processing creditCardAuthorization and processOrder actions. After this is done, the new task (successMessage) is waiting for the user and the user thread will start it right after it concluded the first task (userDataInput).
But if processOrder action fails, the process roll backs to the task-node userDataInput. If the user wishes to try again, she needs to input data again and creditCardAuthorization will be processed for the 2nd time, which is definately not what we want.
So the ideal solution would be to set all the nodes in the process (userDataInput, creditCardAuthorization, processOrder, successMessage) to be processed in separate transaction, but synchronously.
Would it be possible to include setting like that in the next jbpm release?
There is also a possible workaround, to se the action handlers on transition that commit the transaction and start a new one.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965431#3965431
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965431
19 years, 9 months
[JCA/JBoss] - Re: Results caching in Connection Pool
by weston.price@jboss.com
There is no such thing as 'caching results' at the JBoss connection pool level.
The problem is in your undertanding of transactions. Use of a local-transaction-datasource implies that you want JBoss to manage transactions for you. When you close a connection, this does not mean that JBoss commits the transaction.
For example consider the following pseudo code:
Connection c = get C Connection
c.doJDBC
c.close()
//NO Txn has been committed yet
Connectiond = get D Connection
d.doJDBC
d.close()
//Still no commit
Connection d still will see the old records of c because the container has not committed your transaction. Depending upon where this is executed (EJB, Servlet) the transaction will be committed at different times and each has different semantics. I suggest some basic reading on JTA, LocalTransactions and JDBC.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965430#3965430
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965430
19 years, 9 months
[JBossWS] - JSR181 WS deploy problem
by nesbla
Hi,
I'm deploying a simple EJB 3.0 web service using the following code :
| @WebService
| @Stateless
| public class EntiteServiceImpl extends ServiceImpl implements EntiteService {
|
|
| @WebMethod
| public String getString(String chaine) {
| return chaine;
| }
|
|
I'm packaging it into a JAR and into un EAR and deploying to JBoss 4.0.4.GA.
But when i start the server i get this error :
11:58:37,369 ERROR [MainDeployer] Could not create deployment: file:/C:/Refcol/serveur/binaires/jboss-4.0.4.GA/server/default/tmp/deploy/tmp39305refcol.ear-contents/REFCOL-referentiel.jar
| java.lang.NoSuchMethodError: com.ibm.wsdl.xml.WSDLReaderImpl.setEntityResolver(Lorg/xml/sax/EntityResolver;)V
| at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:148)
| at org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273)
| at org.jboss.ws.deployment.JSR181MetaDataBuilder.setupEndpointFromAnnotations(JSR181MetaDataBuilder.java:207)
| at org.jboss.ws.deployment.JSR181MetaDataBuilderEJB3.buildMetaData(JSR181MetaDataBuilderEJB3.java:75)
| at org.jboss.ws.deployment.ServiceEndpointDeployer.create(ServiceEndpointDeployer.java:106)
| at org.jboss.ws.integration.jboss.DeployerInterceptor.create(DeployerInterceptor.java:80)
| at org.jboss.ws.integration.jboss.DeployerInterceptorEJB.create(DeployerInterceptorEJB.java:44)
| at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(SubDeployerInterceptorSupport.java:180)
| at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:91)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy30.create(Unknown Source)
| at org.jboss.deployment.MainDeployer.create(MainDeployer.java:953)
| at org.jboss.deployment.MainDeployer.create(MainDeployer.java:943)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:464)
| at java.lang.Thread.run(Unknown Source)
| 11:58:37,369 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
|
| --- Incompletely deployed packages ---
| org.jboss.deployment.DeploymentInfo@3c1039c9 { url=file:/C:/Refcol/serveur/binaires/jboss-4.0.4.GA/server/default/deploy/refcol.ear }
| deployer: org.jboss.deployment.EARDeployer@6db33c
| status: Deployment FAILED reason: Could not create deployment: file:/C:/Refcol/serveur/binaires/jboss-4.0.4.GA/server/default/tmp/deploy/tmp39305refcol.ear-contents/REFCOL-referentiel.jar; - nested throwable: (java.lang.NoSuchMethodError: com.ibm.wsdl.xml.WSDLReaderImpl.setEntityResolver(Lorg/xml/sax/EntityResolver;)V)
| state: FAILED
| watch: file:/C:/Refcol/serveur/binaires/jboss-4.0.4.GA/server/default/deploy/refcol.ear
| altDD: null
| lastDeployed: 1155722315806
| lastModified: 1155722315103
| mbeans:
I don't understand why it try to access to the WSDLReaderImpl.setEntityResolver method...
Can anyone help me resolve this problem?
Thanks in advance,
Nesbla
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965424#3965424
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965424
19 years, 9 months
[EJB/JBoss] - Calling EJB session bean from Web tier problem
by fla83tn
Hi to all!
I've a strange problem that I'm not able to solve!
My application has to call in remote a session bean, so create it and use its methods.
The problem is that everything goes fine if I instantiate it outside the web tier, it fails if I try to create if from a servlet for instrance!
Any Idea?
The error reported is:
| [LogInterceptor] EJBException in method: public abstract relationship.entity.customer.CustomerSessionFacade relationship.entity.customer.CustomerSessionFacadeHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException:
| javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract relationship.entity.customer.CustomerSessionFacade relationship.entity.customer.CustomerSessionFacadeHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
| at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:175)
| at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:189)
| at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:98)
| at org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:105)
| at org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:56)
| at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:125)
| at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
| at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:161)
| at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:145)
| at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:132)
| at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:107)
| at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:637)
| at org.jboss.ejb.Container.invoke(Container.java:975)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
| at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
| at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:206)
| at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:192)
| at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
| at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
| at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
| at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
| at $Proxy67.create(Unknown Source)
| at relationship.servlet.Servlet1.doGet(Servlet1.java:41)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| at java.lang.Thread.run(Thread.java:595)
| 11:28:19,262 ERROR [STDERR] java.rmi.ServerException: EJBException:; nested exception is:
| javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract relationship.entity.customer.CustomerSessionFacade relationship.entity.customer.CustomerSessionFacadeHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
| 11:28:19,262 ERROR [STDERR] at org.jboss.ejb.plugins.LogInterceptor.handleException(LogInterceptor.java:365)
| 11:28:19,262 ERROR [STDERR] at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:136)
| 11:28:19,263 ERROR [STDERR] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:107)
| 11:28:19,263 ERROR [STDERR] at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:637)
| 11:28:19,263 ERROR [STDERR] at org.jboss.ejb.Container.invoke(Container.java:975)
| 11:28:19,263 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 11:28:19,263 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 11:28:19,263 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 11:28:19,263 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 11:28:19,264 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 11:28:19,264 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 11:28:19,264 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 11:28:19,264 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 11:28:19,264 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 11:28:19,264 ERROR [STDERR] at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
| 11:28:19,264 ERROR [STDERR] at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
| 11:28:19,264 ERROR [STDERR] at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:206)
| 11:28:19,265 ERROR [STDERR] at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:192)
| 11:28:19,265 ERROR [STDERR] at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
| 11:28:19,265 ERROR [STDERR] at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
| 11:28:19,265 ERROR [STDERR] at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
| 11:28:19,265 ERROR [STDERR] at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
| 11:28:19,265 ERROR [STDERR] at $Proxy67.create(Unknown Source)
| 11:28:19,266 ERROR [STDERR] at relationship.servlet.Servlet1.doGet(Servlet1.java:41)
| 11:28:19,266 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
| 11:28:19,266 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| 11:28:19,266 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| 11:28:19,266 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 11:28:19,266 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| 11:28:19,266 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 11:28:19,267 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 11:28:19,267 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| 11:28:19,267 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| 11:28:19,267 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| 11:28:19,267 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| 11:28:19,268 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| 11:28:19,268 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| 11:28:19,268 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| 11:28:19,268 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| 11:28:19,268 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| 11:28:19,269 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| 11:28:19,269 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| 11:28:19,269 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| 11:28:19,269 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
| 11:28:19,282 ERROR [STDERR] Caused by: javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract relationship.entity.customer.CustomerSessionFacade relationship.entity.customer.CustomerSessionFacadeHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
| 11:28:19,282 ERROR [STDERR] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:175)
| 11:28:19,282 ERROR [STDERR] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:189)
| 11:28:19,282 ERROR [STDERR] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:98)
| 11:28:19,282 ERROR [STDERR] at org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:105)
| 11:28:19,282 ERROR [STDERR] at org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:56)
| 11:28:19,282 ERROR [STDERR] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:125)
| 11:28:19,283 ERROR [STDERR] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
| 11:28:19,283 ERROR [STDERR] at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:161)
| 11:28:19,283 ERROR [STDERR] at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:145)
| 11:28:19,283 ERROR [STDERR] at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:132)
| 11:28:19,283 ERROR [STDERR] ... 42 more
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965421#3965421
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965421
19 years, 9 months