Hi,
I need to expose some methods of a WebLogic application as a webservice and already have the Java interface and implementing classes written with the @WebMethod tags on the interface (and @WebService on the class). Now I need to generate the other files but am unsure what these other files are and how to do it, can someone let me know what the steps are?
Well I'm pretty sure I need to generate some endpoints for a start
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35439
9
posted
0
The endpoint is implemented by the methods having the @WebMethod annotation (or all public methods if you use the @WebService annotation); there's nothing else to be done on your end. Check the WSDL after you have deployed the classes - it should show all the endpoints.