Greetings,
I apologize if this question was posted previously. I wasn't able to find it searching the forum.
I would like to find out if there is a way to interface stateless session EJBs with Apache Axis using the message style. Ideally, I would like to have the EJB methods with the following message signature:
public Document method(Document body);
and be able to configure my deployment descriptor so that the SOAP body is passed to the method, for example:
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="Bean" style="message" provider="java:EJB"> <parameter name="beanJndiName" value="ejb/Bean"/> <parameter name="homeInterfaceName" value="path.to.BeanHome"/> <parameter name="remoteInterfaceName" value="path.to.Bean"/> <parameter name="allowedMethods" value="test, test1"/> </service> </deployment>
Hi,
I am facing the same issue and wondered if you were able to make
it work.
Thanks,
Arie.