]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Fixed wrong EJB name
authorRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 13:09:48 +0000 (15:09 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 13:09:48 +0000 (15:09 +0200)
src/java/org/mxchange/pizzaapplication/beans/customer/PizzaCustomerWebSessionBean.java

index 11afb2f61e99125bfb5138f06f8e6a2712ad8d6d..69b8c420e5ce4e9cb8ce85d175a9c02a5c67f993 100644 (file)
@@ -131,7 +131,7 @@ public class PizzaCustomerWebSessionBean implements PizzaCustomerWebSessionContr
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.customerBean = (CustomerSessionBeanRemote) context.lookup("java:global/jshop-ejb/shopCustomer!org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote"); //NOI18N
+                       this.customerBean = (CustomerSessionBeanRemote) context.lookup("java:global/jshop-ejb/shop_customer!org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);