I am exposing a Stateless Session Bean as a web service using following annotations and
would like to capture WSDL during build time. Currently, the wsdl is getting generated at
deployment. Is there a way to generate it before deployment for EJB3 based web services?
I am using jbossws-3.0.1-native-2.0.4.GA in Jboss portal 2.6.6GA
Example EJB3 WS:
@Stateless
@WebService( targetNamespace = "http://www.xyz.com/product/services/AdminFacade"
)
@SOAPBinding( style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL )
public class AdminFacadeBean implements AdminFacadeLocal, AdminFacadeRemote
{
//methods here
}
Thanks,
rjdbvc
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186851#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...