1
vote
1answer
29 views

Caused by: java.lang.ClassCastException Wrapper cannot be cast to

I am trying to run Remote EJB running on a glassfish 3.1 container with a Javafax 2.2 client and I throw an exeption when I "lookup" the remote EJB. The purpose of my Application is to get/put with ...
0
votes
0answers
109 views

JMS Chat application using Spring and GlassFish

I'm trying to get a simple Spring JMS Chat application to work on GlassFish. I think my problem has to do with how my JndiTemplate bean is setup. Here's what I have so far... -- Chat.java -- ...
1
vote
0answers
35 views

ejb ref resolution error for remote business interface on jsp

Before occuring this exception I had two projects Paging -> a simple struts2 web application using EJBs Simple PagingWithAjaxJSON-ejb -> EJB app referenced by above project. Everything was working ...
0
votes
0answers
83 views

tomcat and spring cant lookup for an ejb in glassfish server

I have a problem with Tomcat and Spring looking up for an ejb in a Glasfish server here is the ejb-services.xml loaded: ... <jee:jndi-lookup id="inscriptionService" ...
0
votes
0answers
48 views

EJB Timer with axis2 .aar

I am using EJB TimerService in axis2 web services. The look up is done as follows: Context ctx = new InitialContext(); TimerHelper timer = (TimerHelper) ctx.lookup( "my.package.TimerHelper" ); ...
0
votes
0answers
75 views

GlassFish External JNDI Resource: Reconnect after connection loss

I am using a external JNDI resource to access an OpenLDAP serverand it works very fine unless the OpenLDAP serverwill be restarted. After the restart of the OpenLDAP server it is not possible to ...
3
votes
1answer
377 views

Easy way to access to a remote ejb located in another server

This is my first question in Stack Overflow so I expect it will not be too much simple. I've been looking around Internet for a good solution but by now I don't have it. I am a very begginer to EJB, ...
0
votes
0answers
110 views

aliases for resources injection

i'm using Glassfish 3.1 as application server for my EAR. To create the JMS and JDBC resources required by my application i have the glassfish-resource.xml file. These resources are created with ...
0
votes
1answer
331 views

Sending Text Message using JMS on glassfish server

I am testing JMS with glassfish server so for that i want to send simple text message on glassfish server queue. I have tried with ActiveMQ and that is going fine but i unable to understand what can i ...
0
votes
1answer
281 views

Using jndi with jpa and spring on glassfish

I have a web application that runs on glassfish 3.1. I am using JPA (Hibernate) configured with spring. This is my persistence.xml: <?xml version="1.0" encoding="UTF-8"?> <persistence ...
1
vote
1answer
299 views

Catching error caused by InitialContext.lookup

I'm developing a command line client (Java SE6) that now needs to talk to a Glassfish 2.1 server. The code for setting up this connection is try { final InitialContext context = new ...
1
vote
1answer
630 views

How can you store credentials in a JNDI lookup?

I have an app with several properties files, and I was curious if it'd be easier to store these username/password/server-url-to-login-to combos in a JNDI lookup instead of this clear text file in a ...
1
vote
1answer
151 views

Glassfish embedded JNDI module scope lookup

I am trying to write JUnit tests by using an embedded glassfish server and EJB3. I am using maven and my project has 3 modules, and in each of them I want to perform tests. The module I am currently ...
0
votes
0answers
57 views

glassfish second remote bean not registered

i'm facing a problem while deploying my ear to an glassfish 2.1. In my project i need two remote interfaces to access different business-logic (one for the ui, the other for batch). For that i ...
1
vote
1answer
588 views

JNDI lookup fails for Glassfish custom resources

I am new to Java EE 6 and JNDI so please forgive me if my problem seems trivial I have added a custom resource to Glassfish 3.1.2 JNDI resources via tha admin console: ...
0
votes
0answers
118 views

Edit Glassfish JNDI Properties in Code

I have a Glassfish Custom Resource of type java.util.Properties which stores a set of IPs. I want to edit it in code to dynamically add or remove items. Is there a way of doing this? If not, what ...
3
votes
1answer
1k views

JNDI lookup on different application servers

I have an EAR app with an ejb module inside and SomeService: some-ear.ear -> some-ejb.jar -> SomeBean implements ISomeBean In Java EE specification I see that the JNDI name of this bean ...
1
vote
1answer
600 views

Cannot call methods remotely

Hello I am new to RMI and Glassfish and needs help with this. My sample code: package test.JNDITest; import javax.ejb.Remote; import java.io.Serializable; @Remote public interface Foo extends ...
0
votes
1answer
848 views

Glassfish application not working with maven library (gf-client)

For a school assignment I received a Netbeans project using JNDI and JMS with Glassfish (3 open source edition). All the Glassfish libraries this application is using are referenced by absolute path ...
1
vote
1answer
801 views

Spring 3 JNDI look up in glassfish3

I want to look up some properties from JNDI configured in glassfish v3 server. I want to do it using spring. Here is my spring configuration: <beans ...
1
vote
1answer
247 views

Connecting to remote Glassfish hosted EJB

The application i'm currently working on start to enter in a pre-release phase. In this phase, the server-side application components are to be deployed on Amazon VMs while the client-side ...
0
votes
1answer
816 views

How to access EJB on remote server?

I am using a GlassFish-3.1.2 server running in my subnet (192.168.1.3:3700). I already deployed an enterprise app including an EJB in which i defined a business method. Now I want to remotely access ...
1
vote
3answers
3k views

EJB JNDI with Glassfish

I'm trying to get EJB to work with Glassfish v3. I'm working on a Java EE Web application with Servlets. When I deploy this web app to Glassfish, it registers the EJB class into the java:global ...
0
votes
2answers
463 views

How to use the same connection datasource on Tomcat and Glassfish?

I like to test my web application with Hibernate on a local Tomcat installation and deploy it later to a Glassfish server. Connection datasource for Tomcat looks like this: <property ...
3
votes
1answer
598 views

GlassFish running EJBs on different physical servers

I have a Java EE 6 web application running on GlassFish 3.1. The application uses 2 instances of a local Singleton EJB MySingleton. Each instance of MySingleton connects to a third party software ...
0
votes
1answer
543 views

Can't access remote EJB

I've created EJB with remote and local interfaces. @Stateless public class VendorBean implements VendorBeanLocal, VendorBeanRemote { ... } @Local public interface VendorBeanLocal { ... } ...
0
votes
1answer
607 views

Glassfish ejb ref resolution error for remote business interface

I've created very basic EJB3 stateful bean but can't access it remotely. I'm getting: Caused by: javax.naming.NamingException: ejb ref resolution error for remote business ...
0
votes
1answer
159 views

Why would the Context Lookup Fail for this Specific JMS Message Queue in Glassfish?

I have a message queue in Glassfish with a name like "String.String.etc". Whenever I try to send a message to that MQ, I get the following error message: Lookup failed for 'java:comp/env/[MQ ...
1
vote
2answers
402 views

GlassFish 3.1.1 mangles resource name then complains it can't find it

According to this article and a number of other documents, JDBC resources are deployed globally (available server-wide) unless prefixed with java:app/. When I change jdbc/myDataSource to ...
1
vote
1answer
2k views

How do I setup a jndi datasource in glassfish 3.1?

I need to setup jndi datasource in my web application deployed on the glassfish server. I don't want to use glassfish admin console for creating connection pool and jndi datasource. (This works ...
1
vote
0answers
288 views

Set project stage for JavaServer Faces with JNDI configuration/lookup in Glassfish v3

I'm trying to set the project stage for JavaServer Faces in a GlassFish application server v3 with a JNDI property. I set the stage property to Development stage, but my application received always ...
3
votes
0answers
272 views

JNDI lookup of local stateless session bean using Glassfish 2.1 causes exception

Currently we are using Glassfish 2.1 as our application container. We have an application that is using EJB's ( 3.0 ) and JPA. The application runs Oracle Coherence, and uses a CacheLoader to load ...
0
votes
1answer
204 views

Inter glassfish Session Bean sharing

I'm trying to find a way to do that, but I could not find the riiiiight answer googling it. I think I'm close to it but I fell like something is still missing, or I just need some external opinion ...
2
votes
3answers
5k views

EJB 3.1 | Error calling remote session bean via JNDI

I'm trying to call a simple stateless session bean from a Java SE (Simple class). Here's my bean import javax.ejb.Stateless; /** * * @author MMRUser */ @Stateless public class CapitalBean ...
1
vote
1answer
246 views

Lookup a Message Driven Bean via JNDI

If I create a MessageDriven bean - is it available to other components in my app via JNDI? If so, how can I find/specify the name to look it up by? I'm deploying to glassfish if that makes any ...
0
votes
1answer
827 views

Remote JMS glassfish 3.x

I've created standalone remote client for embedded JMS that stands on glassfish3 server. Client code : jndiContext = new InitialContext(); queueConnectionFactory = (TopicConnectionFactory) ...
0
votes
2answers
2k views

Why we get java.lang.ClassCastException: $Proxy, in jndi lookup of a Stateless Session Bean in Glassfish 3.1.1

We are having problems looking up a Local Stateles session Bean instance in a utility class. We always get a ClassCastException: $ProxyXYZ (XYZ is any number) We are using Glassfish 3.1.1, JPA 2, ...
0
votes
1answer
2k views

Configuring Hibernate to use a Glassfish ConnectionPool

After googleing for a whole day, I've seen a lot of discussion on this issue, even a guide which supposedly solves the problem[1], but until now I didn't get to a solution. I want to configure my web ...
1
vote
2answers
3k views

SerialInitContextFactory not found in glassfish naming

This one starts to drive me completely nuts ... I want to create a Glassfish client application using Maven. For that, I've added the requried gf-client dependency : <dependency> ...
1
vote
1answer
203 views

Listen for changes in JNDI on Glassfish – how to look up EventContext?

My EJB application looks up some configuration values from JNDI. I would like to be able to change these values and have the application take notice immediately, without having to restart the server ...
0
votes
1answer
370 views

JNDI resources in Tomcat

In Tomcat, it looks like I must specify any JNDI resources in both the context.xml and my web.xml. Is this correct? Is there any way around this? I would think that one configuration in the ...
0
votes
1answer
345 views

How do I force GlassFish 2 to load EJBs on startup?

We're using EJB3 on GlassFish v2. My application includes a GenericServlet called StartupServlet, which has an init method. java.util.TimerTask pollers started from this method cannot lookup facades ...
0
votes
1answer
152 views

Glassfish, problem obtaining EJB through JNDI

I am trying to obtain a reference to EJB2 from EJB1. EJB2 is deployed separately, but they are both running in the same container. I'm using the following code in EJB1: Context ctx = new ...
1
vote
1answer
1k views

JNDI lookup fails in Glassfish

I am working on a web project using maven.When I run the server on net-beans 6.8,the build is succes,but when deploying to server I am getting lookup failed exception.Please find the server log in the ...
0
votes
1answer
360 views

How do I add a JNDI entry called “properties” in Glassfish on startup without using the admin?

In the code for our project there is this line: (Properties) new InitialContext().lookup("properties") One of the other developers said I had to add the entry through the admin for my instance of ...
0
votes
1answer
639 views

Can't find Hibernate's SessionFactory in my Glassfish app server

I'm just playing around with implementing Hibernate as persistence provider in Glassfish application server. I already configured JNDI datasource, connection pool etc. My Hibernate config is as ...
1
vote
4answers
9k views

EJB3 Glassfish JNDI lookup

I am using Glassfish-bundled Eclipse IDE. I wrote a simple EJB application. but it doesn't work. @Stateless @Remote(CalculatorRemote.class) @Local(CalculatorLocal.class) public class Calculator ...
0
votes
2answers
3k views

cannot find my bean using the InitialContext.lookup() method

I have tried to use struts 1.3 API to make a small application with EJB 3.0. Unfortunatelly i cannot use the @EJB annotation to call my bean object from inside my action class. I have solved this ...
3
votes
1answer
552 views

share env-entry between multiple ejb

I am currently working on a project with multiple ejb and one ejb-jar.xml. I wonder how to share the env-entry from the ejb-jar.xml between the various ejbs. example : I have the following ...
2
votes
2answers
946 views

Elegant solution for managing .properties files in glassfish/tomcat/etc

Does anybody have a good solution for managing .properties files in a web application? Currently I have to pull apart my .war file before deploying, change the entries in my .properties file, and ...

1 2