It's not a secret anymore!
The moose likes Web Services and the fly likes Webservice using JAX-WS Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "Webservice using JAX-WS" Watch "Webservice using JAX-WS" New topic
Author

Webservice using JAX-WS

Will Myers
Ranch Hand

Joined: Aug 05, 2009
Posts: 287

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?

Thanks
Willy
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35439
    
    9
If you don't know what "the other files" are, why do you think you need them? What are they supposed to contain?


Android appsImageJ pluginsJava web charts
Will Myers
Ranch Hand

Joined: Aug 05, 2009
Posts: 287

Well I'm pretty sure I need to generate some endpoints for a start
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35439
    
    9
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.
Will Myers
Ranch Hand

Joined: Aug 05, 2009
Posts: 287

don't I need to add a web.xml file or something
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35439
    
    9
I see; I thought that a high-end JEE server like WebLogic would have admin capabilities to deploy WS.

The way to deploy JAX-WS services as part of standard web app is described in http://www.coderanch.com/t/223670/Web-Services/java/Deploy-JAXWS-Mustang-WS-Tomcat
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Webservice using JAX-WS
 
Similar Threads
HttpClient and Webservice
Help on Webservice
WebServices clarifications!!
calling methods from external web service
What is the difference between servlet and webservice.