Reputation: 2855
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?
Upvotes: 14
Views: 19574
Reputation: 21
You have to disable JAX-RS support on you project, you can do it following this two steps:
First access your project properties
Then filter properties by JAX-RS, disable JAX-RS support and click on Apply and close
Upvotes: 1
Reputation: 77
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.
Upvotes: 0
Reputation: 993
You can use the Package Explorer view instead of the Project Explorer view: those nodes don't appear.
Upvotes: 5
Reputation: 3893
If you don't care about JAX-WS, you can hide it from the Project Explorer. To do this, click the little down arrow button (see image below) and, from the popup menu, choose "Customize View...". On the Customize View dialog, goto the "Content" tab. On the Content tab, uncheck "JAX-WS Web Services Elements".
Upvotes: 31