]> git.mxchange.org Git - jjobs-war.git/commitdiff
Fixed EJB name
authorRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 16:48:14 +0000 (18:48 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 16:48:14 +0000 (18:48 +0200)
src/java/org/mxchange/jjobs/beans/country/JobsAdminCountryWebApplicationBean.java
src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebSessionBean.java

index aa29d719d4abc7cff089dec8afdfcdc80adb487d..e79c576241316abb0afe257c7fde8907e2aa0ab0 100644 (file)
@@ -96,7 +96,7 @@ public class JobsAdminCountryWebApplicationBean implements JobsAdminCountryWebAp
                        Context context = new InitialContext();
 
                        // Try to lookup the bean
-                       this.countryBean = (CountrySingletonBeanRemote) context.lookup("java:global/PizzaService-ejb/country!org.mxchange.jcountry.data.CountrySingletonBeanRemote"); //NOI18N
+                       this.countryBean = (CountrySingletonBeanRemote) context.lookup("java:global/jjobs-ejb/country!org.mxchange.jcountry.data.CountrySingletonBeanRemote"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw
                        throw new FaceletException(ex);
index a78551f1179456ca04fbcf11309b28321be9eb06..38b056917804260eca1b4fe9d0df33d82f400d57 100644 (file)
@@ -194,7 +194,7 @@ public class JobsAdminUserWebSessionBean implements JobsAdminUserWebSessionContr
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.userBean = (UserSessionBeanRemote) context.lookup("java:global/PizzaService-ejb/user!org.mxchange.jusercore.model.user.UserSessionBeanRemote"); //NOI18N
+                       this.userBean = (UserSessionBeanRemote) context.lookup("java:global/jjobs-ejb/user!org.mxchange.jusercore.model.user.UserSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);