]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/basket/PizzaBasketWebSessionBean.java
Some fixes + added missing "extends Serializable"
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / basket / PizzaBasketWebSessionBean.java
index 56bdc6e0a32c6dd2fa6e35ae684646bad7915f2f..2d4db1b60a1cf881e90cd9f55a468d5b21813649 100644 (file)
@@ -80,7 +80,7 @@ public class PizzaBasketWebSessionBean implements PizzaBasketWebSessionControlle
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.basketBean = (BasketSessionBeanRemote) context.lookup("ejb/stateless-basket"); //NOI18N
+                       this.basketBean = (BasketSessionBeanRemote) context.lookup("java:global/jshop-ejb/basket!org.mxchange.jshopcore.model.basket.BasketSessionBeanRemote"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw
                        throw new FaceletException(ex);
@@ -480,4 +480,5 @@ public class PizzaBasketWebSessionBean implements PizzaBasketWebSessionControlle
                // Return it
                return foundItem;
        }
+
 }