Thanks Sanne. You are right. The WAR was packaging jta and jms jars which the app server was not liking at all. Also, thanks for pointing me to tattletale, it seems like a good tool to have in my tool box (although, I am still trying to decipher the HTML report :))
That said, I was wondering if you could help with one more question.
So according to the docs, I can feed jndi stuff used to initialize the context via
Quote:
hibernate.search.worker.jndi.* Defines the JNDI properties to initiate the InitialContext (if needed). JNDI is only used by the JMS back end.
This will work fine for standard JNDI configuration constants like initial_context_factory, provider_url, etc (I assume).
What about specifying things that are vendor specific? For example, in websphere, to successfully java a standalone java client look up the destination on a running server and use it, in addition to specifying initial_context_factory and provider_url, we need to specify a third parameter which is vendor specific
i.e.
com.ibm.CORBA.ORBInit=com.ibm.ws.sib.client.ORB
If I wanted to pass this when configuring the slave node in search, how will I do it?
Thanks in advance.