Tagged Questions
1
vote
0answers
27 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
26 views
Does JNDI lookup-name supported on tomcat?
I have multiple wars that are exposing the same JNDI properties in web.xml
I need to access those properties in my shared library jar.
For example, I have multiple wars, each will expose its JNDI ...
0
votes
1answer
45 views
Get all CDI beans
I want to retrieve all CDI beans from container as map which bean names as keys and beans as values. How could I achieve this?
I need this to add CDI beans to thymeleaf expression resolver.
1
vote
1answer
370 views
How to do jndi lookup of MQ connection factory defined in Websphere app Server from Spring
I am trying to connect to a MQ connection factory defined in Websphere app Server 7.0.
But I couldnt find a right connectionfactory interface for the MQ to define in Spring.
However when I tried to ...
0
votes
0answers
52 views
EJB (Local/Stateless) JDNI Lookup
I have looked around for information on this, but it's been strangely impossible to find.
I want to know this: does one have to do anything specific for @Local/@Stateless beans to show up in JNDI? I ...
0
votes
1answer
292 views
JNDI InitialContext - Server Path
I am struggling to understand what InitialContext does. I understand that it provides initial context to lookup objects, but which server does it lookup?
I know that we can pass the server url as one ...
1
vote
1answer
6k views
How to lookup ejb on JBoss AS 7.x
I try ejb lookup for jndi name.
That ejb is same jboss server then is success. But ejb is other jboss server then is failed.
My source code:
Hashtable<String, String> env = new ...
0
votes
1answer
533 views
inject ejb bean with mappedname in another bean without using name
I have a two ejb's in an EAR on glassfish, both implementing remote interfaces why they have both a mapped name assigned to them for client jndi lookup.
Now I want to inject one into the other.
I ...
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 ...
0
votes
1answer
1k views
EJB: Why do I get this error in JNDI lookup?
InitialContext ctx = new InitialContext();
StatelessInterogareRemote beanStatelessRemote = (StatelessInterogareRemote) ctx
...
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, ...
8
votes
1answer
3k views
What is the relationship between java:comp/env and java:global?
What is the relationship between java:comp/env and java:global (regarding 3.1 spec)?
Seems like java:comp/env contains specific to EJB references.
What means "specific" in this case?
0
votes
1answer
230 views
Different JNDI provider url for one case
I use remote EJB call to run my program.
Third party jar(who performs that call) needs different "java.naming.provider.url" than system one.
Any way to specify different provider url only for some ...
0
votes
1answer
632 views
Can not lookup EJB2 from other EJB2, but can do it from servlet
I develop enterprise project in NetBeans on GlassFish (J2EE_1.4).
There are some entity beans, a couple of session beans and message driven bean in my project.
I use entity beans from servlet (in same ...
1
vote
2answers
4k views
Problem doing jndi lookup for EJB
Im having trouble doing a lookup
Project Structure:
a dynamic web project (gss-web) and an EJB project (gss-ejb) deployed together inside an .ear (gss-ea) onto a jboss 6 server
Exception:
...
0
votes
1answer
598 views
How to JNDI lookup from cluster 1 : a queue that exists in cluster 2 in Websphere 6?
I have a Websphere topology wherein in Cluster1, I have an MDB that's trying to publish to another MDB that resides in Cluster2. Since they're both in the same container, I tried simply
...
0
votes
1answer
80 views
what does # character means in JNDI lookup?
hi every one
does any one know that
"what does '#' character means in JNDI look up?"
like:
helloUser = (HelloUser) ctx.lookup("HelloUser#ejb3inaction.example.HelloUser");
thanks a lot
1
vote
1answer
766 views
Access objects through JNDI from an external JVM in Atg Dyanmo Application Server
I am trying to access some objects using JNDI from an external JVM in Atg Dyanmo Application Server. I am using the following code -
import java.util.Hashtable;
import javax.naming.Context;
...