How to remove JAX-WS Web Services node in Eclipse Project Explorer?

Viewed 17979

For development I use Eclipse Helios. In one of my projects in the project explorer a new node showed up. It is called JAX-WS Web Services. I do NOT use webservices in my project. The node has two sub nodes, Service Endpoint Interface and Web Services. Both of them are empty. I have some other project open too. They do not show this node.

How can I remove this unwanted JAX-WS Web Services node from my project?

4 Answers

You have to disable JAX-RS support on you project, you can do it following this two steps:

First access your project properties

enter image description here

Then filter properties by JAX-RS, disable JAX-RS support and click on Apply and close

enter image description here

It seemed that if you create your dynamic web project with eclipse, you can not remove JAX-WS, unless you create your project in other ways.

Related