I'm trying to expose a stateless session bean as a webservice. I have not been able to find explicit instructions on how to do this in any of the docs or examples. Specifically, I would like to know the following:
1) how do I generate the .wsdl for for me EJB? Do I simply run the remote home interface through the java2wsdl tool? 2) How do I generate the deployment descriptor? Do I generate them just like I would any other class (in other words, using wsdl2java)? Are there certain configurations parameters in the DD that should be modified to tell the deployer that the class is a EJB? Which of the 3 ejb classes (home, remote home, or implementation) should I bind to? 3) Will the rpc router call the ejb container, or will it make direct calls to the implementation class? I'm using axis beta 1, and I'm planning on trying to integrate with weblogic 6.1. Thanks in advanced, James