Compiling a webservice

-1

I created a WebService in eclipse using java, but how do I compile this WebService and put it to work without the need to install Eclipse?

Note: I've used tomcat as a server

    
asked by anonymous 08.05.2017 / 19:33

1 answer

0

You need to install Tomcat, Glassfish, or the server of your choice. Let's talk how to do with Tomcat. With your server ready to receive your webservice you need to export your project as a war file by following these steps in Eclipse: Right click on the project, export > other > war With this file in hand you just have to enter your Tomcat Manager, go to the Deploy written option put your Webservice information as path etc and select the generated .war file. After all these steps your Webservice will be listed in the Tomcat services available in the manager tab and there will be the link to access it.

    
09.05.2017 / 16:08