<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/rosanero4ever">rosanero4ever</a> in <i>EJB3</i> - <a href="http://community.jboss.org/message/639581#639581">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>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.</p><p>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.</p><p>I hope anyone can help me to understand the right way.</p><p>Thanks in advance</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The EJB code (taken from the book "EJB in Action") and the error are the following:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; </p><p>&#160; @Stateless public class PlaceOrderBean implements PlaceOrderBeanLocal</p><p>&#160;&#160;&#160; {</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; @Resource(name = "jms/QueueConnectionFactory")</p><p>&#160;&#160;&#160; private ConnectionFactory connectionFactory;&#160; </p><p>&#160;&#160;&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; private Long bidderId;</p><p>&#160;&#160;&#160; private List();</p><p>&#160;&#160;&#160; }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; private void billOrder(Order order) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; try {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Connection connection = connectionFactory.createConnection();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Session session = connection.createSession(false,</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Session.AUTO_ACKNOWLEDGE);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; MessageProducer producer = session.createProducer(billingQueue);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ObjectMessage message = session.createObjectMessage();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; message.setObject(order);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; producer.send(message);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; producer.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; session.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.close();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; } catch (Exception e) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; e.printStackTrace();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160; }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; @Remove</p><p>&#160;&#160;&#160; public Long confirmOrder() {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Order order = new Order();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; order.setBidderId(bidderId);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; order.setItems(items);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; order.setShippingInfo(shippingInfo);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; order.setBillingInfo(billingInfo);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; saveOrder(order);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; billOrder(order);</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; return order.getOrderId();</p><p>&#160;&#160;&#160; }</p><p>&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; /* OTHER METHODS */</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The error is :</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; </p><p>16:03:23,296 ERROR <a class="jive-link-external-small" href="org.jboss.kernel.plugins.dependency.AbstractKernelController">org.jboss.kernel.plugins.dependency.AbstractKernelController</a> Error </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; 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</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:185) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1603) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) <a class="jive-link-external-small" href="">jboss-dependency.jar:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) <a class="jive-link-external-small" href="">:6.0.0.Final</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:240) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.lang.Thread.run(Thread.java:722) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160; 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</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.switchboard.mc.resource.provider.ResourceRefResourceProviderDelegator.provide(ResourceRefResourceProviderDelegator.java:125) <a class="" href="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</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.switchboard.mc.resource.provider.ResourceRefResourceProviderDelegator.provide(ResourceRefResourceProviderDelegator.java:44) <a class="" href="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</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.switchboard.mc.JndiEnvironmentProcessor.process(JndiEnvironmentProcessor.java:68) <a class="" href="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</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.switchboard.mc.deployer.AbstractSwitchBoardDeployer.process(AbstractSwitchBoardDeployer.java:119) <a class="" href="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</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.switchboard.mc.deployer.EJBEnvironmentSwitchBoardDeployer.internalDeploy(EJBEnvironmentSwitchBoardDeployer.java:87) <a class="" href="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</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;... 38 more</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; 16:03:23,484 WARN&#160; <a class="jive-link-external-small" href="org.jboss.profileservice.deployment.hotdeploy.HDScanner">org.jboss.profileservice.deployment.hotdeploy.HDScanner</a> Scan failed: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; </p><ul><ul><ul><li level="3" type="ul"><p>DEPLOYMENTS IN ERROR: Name -&amp;gt; Error</p></li></ul></ul></ul><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; vfs:///D:/jboss6/server/default/deploy/prova2.ear -&amp;gt; org.jboss.deployers.spi.DeploymentException: Error during deploy: org.jboss.metadata.ejb.jboss.JBossEnterpriseBeanMetaData.PlaceOrderBean</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; DEPLOYMENTS IN ERROR:</p><p>&#160;&#160;&#160;&#160;&#160; 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</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1370) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1316) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:968) <a class="jive-link-external-small" href="">:2.2.0.GA</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:82) <a class="jive-link-external-small" href="">:6.0.0.Final</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.checkComplete(ProfileControllerContext.java:138) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:246) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:0.2.2">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.lang.Thread.run(Thread.java:722) <a class="" href="http://community.jboss.org/message/639581#639581#639581/:1.7.0">Error deploying EJB on JBoss 6 using @Resource annotation and jndi.properties</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/639581#639581">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in EJB3 at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2029">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>