boes
boes

Reputation: 2855

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

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

Answers (4)

willer quintanilha
willer quintanilha

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

enter image description here

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

enter image description here

Upvotes: 1

Andy
Andy

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

Fabrice TIERCELIN
Fabrice TIERCELIN

Reputation: 993

You can use the Package Explorer view instead of the Project Explorer view: those nodes don't appear.

Upvotes: 5

worpet
worpet

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".

click the little down arrow button

Upvotes: 31

Related Questions