[EJB3] - Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
by rosanero4ever
rosanero4ever [http://community.jboss.org/people/rosanero4ever] created the discussion
"Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties"
To view the discussion, visit: http://community.jboss.org/message/639581#639581
--------------------------------------------------------------
I'm using netbeans 7 and JBoss 6 and I'm looking for a solution in these days about the error pasted below when I deploy mi EJB 3 bean using @Resource annotation.
It seems an error caused by a bad position of the jndi.properties in the ear structure. I put this file in the classpath of the project, i.e. the src folder. I also used the conf folder of the ear but the problem still occurs.
I hope anyone can help me to understand the right way.
Thanks in advance
The EJB code (taken from the book "EJB in Action") and the error are the following:
@Stateless public class PlaceOrderBean implements PlaceOrderBeanLocal
{
@Resource(name = "jms/QueueConnectionFactory")
private ConnectionFactory connectionFactory;
private Long bidderId;
private List();
}
private void billOrder(Order order) {
try {
Connection connection = connectionFactory.createConnection();
Session session = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
MessageProducer producer = session.createProducer(billingQueue);
ObjectMessage message = session.createObjectMessage();
message.setObject(order);
producer.send(message);
producer.close();
session.close();
connection.close();
} catch (Exception e) {
e.printStackTrace();
}
}
@Remove
public Long confirmOrder() {
Order order = new Order();
order.setBidderId(bidderId);
order.setItems(items);
order.setShippingInfo(shippingInfo);
order.setBillingInfo(billingInfo);
saveOrder(order);
billOrder(order);
return order.getOrderId();
}
/* OTHER METHODS */
}
The error is :
16:03:23,296 ERROR org.jboss.kernel.plugins.dependency.AbstractKernelController org.jboss.kernel.plugins.dependency.AbstractKernelController Error
installing to Real: name=vfs:///D:/jboss6/server/default/deploy/prova2.ear state=PreReal mode=Manual requiredState=Real: org.jboss.deployers.spi.DeploymentException: Error during deploy: org.jboss.metadata.ejb.jboss.JBossEnterpriseBeanMetaData.PlaceOrderBean
at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:185) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1603) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) :2.2.0.GA
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) jboss-dependency.jar:2.2.0.GA
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) jboss-dependency.jar:2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) :2.2.0.GA
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) :2.2.0.GA
at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) :6.0.0.Final
at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:240) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.lang.Thread.run(Thread.java:722) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
Caused by: java.lang.RuntimeException: Neither any mapped-name/lookup/jndi-name specified nor any ResourceProvider could process resource-ref named env/jms/QueueConnectionFactory of type javax.jms.ConnectionFactory
at org.jboss.switchboard.mc.resource.provider.ResourceRefResourceProviderDelegator.provide(ResourceRefResourceProviderDelegator.java:125) http://community.jboss.org/message/639581#639581#639581/:1.0.0-alpha-15 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.switchboard.mc.resource.provider.ResourceRefResourceProviderDelegator.provide(ResourceRefResourceProviderDelegator.java:44) http://community.jboss.org/message/639581#639581#639581/:1.0.0-alpha-15 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.switchboard.mc.JndiEnvironmentProcessor.process(JndiEnvironmentProcessor.java:68) http://community.jboss.org/message/639581#639581#639581/:1.0.0-alpha-15 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.switchboard.mc.deployer.AbstractSwitchBoardDeployer.process(AbstractSwitchBoardDeployer.java:119) http://community.jboss.org/message/639581#639581#639581/:1.0.0-alpha-15 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.switchboard.mc.deployer.EJBEnvironmentSwitchBoardDeployer.internalDeploy(EJBEnvironmentSwitchBoardDeployer.java:87) http://community.jboss.org/message/639581#639581#639581/:1.0.0-alpha-15 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) :2.2.0.GA
... 38 more
16:03:23,484 WARN org.jboss.profileservice.deployment.hotdeploy.HDScanner org.jboss.profileservice.deployment.hotdeploy.HDScanner Scan failed: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
*** DEPLOYMENTS IN ERROR: Name -> Error
vfs:///D:/jboss6/server/default/deploy/prova2.ear -> org.jboss.deployers.spi.DeploymentException: Error during deploy: org.jboss.metadata.ejb.jboss.JBossEnterpriseBeanMetaData.PlaceOrderBean
DEPLOYMENTS IN ERROR:
Deployment "vfs:///D:/jboss6/server/default/deploy/prova2.ear" is in error due to the following reason(s): java.lang.RuntimeException: Neither any mapped-name/lookup/jndi-name specified nor any ResourceProvider could process resource-ref named env/jms/QueueConnectionFactory of type javax.jms.ConnectionFactory
at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1370) :2.2.0.GA
at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1316) :2.2.0.GA
at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:968) :2.2.0.GA
at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:82) :6.0.0.Final
at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.checkComplete(ProfileControllerContext.java:138) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:246) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) http://community.jboss.org/message/639581#639581#639581/:0.2.2 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
at java.lang.Thread.run(Thread.java:722) http://community.jboss.org/message/639581#639581#639581/:1.7.0 Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/639581#639581]
Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
13 years
[jBPM] - Using Jbpm 5 in a commercial project
by nash kom
nash kom [http://community.jboss.org/people/nash.komar] created the discussion
"Using Jbpm 5 in a commercial project"
To view the discussion, visit: http://community.jboss.org/message/639376#639376
--------------------------------------------------------------
Hi,
Our company has been using the JBOSS technology stack for 5 years now, and we have several SEAM application running in production at the moment.
We have new requirements where the use of JBPM5 would make a lot of sense (for an incident ticketing application).
We have started looking into the example and implementing some sandbox projects, but are running in a few difficulties.
Unfortunately we missed the last JBPM event in LONDON by just a few weeks
We were wondering:
- does Redhat / Jboss offer any professional services for JBPM5 / have consultants specialised in JBPM in europe ?
- Is there any dangers / warning to be aware of, before starting a project which is a not just a test project but needs to be production worthy ?
- And for that matters is there any company you know of, who are already using JBMP5 (or jbpm3) in production or in project to be delivered in the near future
- Does JBOSS have a list of "JBPM5 customer success story" (or JBPM3) that they are happy to share ?
Thank you for your help.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/639376#639376]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
13 years
[jBPM] - Deploy ProcessDefinition fail,BLOB is NULL
by frh10 ff
frh10 ff [http://community.jboss.org/people/frh10] created the discussion
"Deploy ProcessDefinition fail,BLOB is NULL"
To view the discussion, visit: http://community.jboss.org/message/639225#639225
--------------------------------------------------------------
Hi!
I use jbpm4.4,when i deploy a ProcessDefinition,it run as well,but i check the database jbpm4_lob ,i find the new ProcessDefinition's BLOB_VALUE is null,and i can't get this ProcessDefinition because the jpdl.xml is null,here is my code:
DeploymentImpl di = (DeploymentImpl) repositoryService.createDeployment();
String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><process name=\"VacationRequest\" xmlns=\" http://jbpm.org/4.4/jpdl/ http://jbpm.org/4.4/jpdl\"><start g=\"16,56,48,48\" name=\"start\"><transition to=\"verify_request\"/></start><task g=\"96,54,178,52\" name=\"verify_request\"><transition g=\"-34,9\" name=\"reject\" to=\"vacation_rejected\"/><transition g=\"-46,-26\" name=\"accept\" to=\"vacation_accepted\"/></task><end g=\"306,16,48,48\" name=\"vacation_accepted\"/><end g=\"306,96,48,48\" name=\"vacation_rejected\"/></process>";
di.addResourceFromString(“textWF.jpdl.xml”, xml);
when i run this,the jbpm's database add a ProcessDefinition,but like this:
http://community.jboss.org/servlet/JiveServlet/showImage/2-639225-17400/Q... http://community.jboss.org/servlet/JiveServlet/downloadImage/2-639225-174...
how can i solve this problem?Thanks!
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/639225#639225]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
13 years
[Beginner's Corner] - JBoss AS 6.0.0.Final (Hypersonic) System tables
by Pasquale Imbemba
Pasquale Imbemba [http://community.jboss.org/people/pi4630] created the discussion
"JBoss AS 6.0.0.Final (Hypersonic) System tables"
To view the discussion, visit: http://community.jboss.org/message/639518#639518
--------------------------------------------------------------
It's time to go into production soon for my pilot project on EJB 3. Up to now, I've been using the HsqlDB Datasource (where JBoss has its tables and relations) and my enterprise datasource, where the enterprise tables and relations are stored. That is, my JBoss starts with two ds-es.
I don't want to use Hypersonic in production, so it would be time to switch to one datasource only. How do I achieve this?
Some thoughts:
1. Should I declare the enterprise datasource as DefaultDS, granting create table rights to the connection user and let JBoss do the job of creating the tables for me first time it starts up after the change?
2. If yes, after that, can I revoke the create table grants to the db connection user used by JBoss6 or will this "break" somehow the AS?
3. Is there documentation about these tables, i.e. how their fields are defined and how they're used? (Size, n° of growth, ecc.)
My DBA badly wants info about this, but it's a topic I didn't encounter so far from a EJB programming point of view.
Thank you in advance
~ pasquale
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/639518#639518]
Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
13 years
[jBPM] - JBPM CONSOLE : HTTP Status 500 -
by Abk RH
Abk RH [http://community.jboss.org/people/ramouda] created the discussion
"JBPM CONSOLE : HTTP Status 500 -"
To view the discussion, visit: http://community.jboss.org/message/638891#638891
--------------------------------------------------------------
Hi all,
I encountred an HTTP 500 Error on the jbpm console, it's repetitive problem and i can not fix that, can any one help me please.
Here the stacktrace og the exception
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException javax.faces.webapp.FacesServlet.service(FacesServlet.java:277) org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
root cause
java.lang.NullPointerException org.jboss.seam.jsf.SeamViewHandler.calculateLocale(SeamViewHandler.java:55) com.sun.facelets.FaceletViewHandler.calculateLocale(FaceletViewHandler.java:788) javax.faces.application.ViewHandlerWrapper.calculateLocale(ViewHandlerWrapper.java:102) org.ajax4jsf.application.ViewHandlerWrapper.calculateLocale(ViewHandlerWrapper.java:65) com.sun.faces.application.ViewHandlerImpl.createView(ViewHandlerImpl.java:377) org.jboss.seam.jsf.SeamViewHandler.createView(SeamViewHandler.java:68) com.sun.facelets.FaceletViewHandler.createView(FaceletViewHandler.java:799) javax.faces.application.ViewHandlerWrapper.createView(ViewHandlerWrapper.java:132) org.ajax4jsf.application.ViewHandlerWrapper.createView(ViewHandlerWrapper.java:79) org.ajax4jsf.application.AjaxViewHandler.createView(AjaxViewHandler.java:93) com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:205) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:104) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
note The full stack trace of the root cause is available in the JBossWeb/2.0.0.GA_CP logs.
Best regards
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/638891#638891]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
13 years