Hi
Im a new bibe to AEM, Im looking to call the ejb service which is hosted in Jboss 7.0.1 Final in osgi bundle. I have added all the supporting client jars by converting them to bundle and deployed in Felix console. The exact problem is, the properties that are set in InitialContext[Javax.naming] is not looking up the remote jndi name.
Can any one help me on this.
Regards,
Jaisudha
Solved! Go to Solution.
Views
Replies
Total Likes
HI Jaisudha,
I would recommend to avoid it or else try to engage with profession service. It is little challenging & need to take care of couple of things like Exported as system bundle, might have to implement Thread Context ClassLoader which is incorrect etc...
Thanks,
Sham
Views
Replies
Total Likes
In this case - CQ is the external Java client calling the EJB service. See:
Calling EJB Session Beans from External Java Clients
Are you saying the Look up is failing - for example:
InitialContext context = new InitialContext(); Object sbobj = context.lookup("sssw://" + servername + "/RMI/" + sbjndiname);
Views
Replies
Total Likes
Hi..
Below is an elaboration on how im trying to do, which is actually working in stand alone java code.
1. Setting the below properties in jboss-ejb-client.properties file which is placed in src folder directly.
remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false
remote.connections=default
remote.connection.default.host=localhost
remote.connection.default.port = 4447
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
2. Adding the url prefixes to the property and
Properties propsIC = new Properties();
propsIC.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
InitialContext ctx = new InitialContext(propsIC);
3. Looking up using initial context
EjbPocRemote --> This is the stub interface which is kept at client side [packaged same like an service remote for lookup]
EjbPocRemote ejbRemote = (EjbPocRemote)ctx.lookup("ejb:/HelloWorldSessionBean//EjbPoc!com.cts.ejbtest.EjbPocRemote");
Problem: now if i try to print the ejbRemote i get null when i deploy the same code in osgi felix console..
Please correct me if the look up name is wrong wrt osgi. is this the correct way ? Can you provide a guide on how to write a EJB client as a osgi bundle while the EJB is hosted in jboss.
Regards,
Jaisudha
Views
Replies
Total Likes
I would need a guide to set the thread context classloader (TCCL) for InitialContext and lookup in osgi filex client.
Regards,
Jaisudha
Views
Replies
Total Likes
Can any one reply on this. Im still stuck up on this.
Views
Replies
Total Likes
As sham has suggested, this is not a straight forward AEM use case and not supported out of the box (explains why you are getting null). In this case, contact AEM professional services as Sham suggested.
Views
Replies
Total Likes
HI Jaisudha,
I would recommend to avoid it or else try to engage with profession service. It is little challenging & need to take care of couple of things like Exported as system bundle, might have to implement Thread Context ClassLoader which is incorrect etc...
Thanks,
Sham
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies