EJB application works in TomEE Plus but not TomEE webprofile

2016-07-27 Thread sweiss77
I have an EJB application that is packaged as a JAR file. It works fine when deployed to TomEE Plus (to the apps directory) but does not work when deployed to TomEE webprofile. Is it possible that this is because I am connecting to the session beans via http (port 8080) and the web profile version

Re: EJB application works in TomEE Plus but not TomEE webprofile

2016-07-27 Thread sweiss77
Thank you for the response. Our code is not using jaxws or jms, here is the code- just doing a jndi lookup: /StringBuilder url = new StringBuilder("global/hq_calendarEjb/"); url.append(isLiferaySpecificService?"Liferay":"").append(ejbInterfaceClass.getSimpleName()).append("Bean!").append(ejbInterf

Re: EJB application works in TomEE Plus but not TomEE webprofile

2016-07-29 Thread sweiss77
I just tried running a junit test from Eclipse and it works fine. So I think the issue must be somewhere in the client applicationcode that's making the call to the remote EJBs. I'll have to look through that some more (I didn't write that code). Thanks for your help. -- View this message in con