I have a Java Web Services project that was created in an older version of NetBeans, and I haven't accessed it in many months, so my paths and installed libraries are different.

When I try to open the project, I get a "Resolve Reference Problems" dialog, and two Reference Problems are listed:

"metro" library could not be found
"JAX-WS-ENDORSED" library could not be found

I have a fresh installation of JDK 6 Update 25 with NetBeans 7.0, and am running Windows 7.

What steps can I take to solve this? I don't even know where to start, as every approach I've taken so far hasn't gotten me anywhere.

Note: JAX-WS-ENDORSED does not appear in my Libraries listing, so I can't remove it. Something hidden is referencing it. How would I find this?

link|improve this question

feedback

5 Answers

I just came across this issue and found some help from http://netbeans.org/bugzilla/show_bug.cgi?id=187145. Apparently, Netbeans will create the JAX-WS-ENDORSED library when a new web service is created. So go to File > New File, choose Web Service > Web Service Client and fill in dummy values (this can be done in a throwaway project). This client can then be removed, and Netbeans will have created the library with the following classpath entries:

java/modules/ext/jaxws22/api/jaxws-api.jar
ide/modules/ext/jaxb/api/jaxb-api.jar

These are relative to your Netbeans install directory (on OS X will be located in Contents/Resources/Netbeans within the .app). Alternatively, you could create the library manually using the entries above.

This only needs to be done once, as the library will be added to Netbeans Global Libraries list.

link|improve this answer
feedback

Netbeans maintains a set of libraries, which are simply a comvenient way to manage groups of related jar files. Start by clickong Tools > Libraries. You will see the library manager window.

Library Manager

You will see the options to add your own libraries if you have jar files downloaded. If you do not see the library that you are looking for you can download them and add them your self. Once the library exist in Netbeans you can go to the Project Explorer window and right click on the Libraries tab of your project. Select Add Library and you will have the chance to add the library that you added in the library manager.

link|improve this answer
First of all, how might I know which libraries to use here? I can only guess what "metro" and "JAX-WS-ENDORSED" are referring to. I have no ideas on "metro," but I assume "JAX-WS-ENDORSED" means I should use JAX-WS 2.2. I tried adding JAX-WS 2.2 as a reference, and still got the same error. – notfed Jun 1 '11 at 21:21
You probably have to remove the JAX-WS-ENDORSED library from the project. Under the list of libraries in Project Explorer you should see it listed. Right CLick and delete. As for metro, I cannot be sure but there is this reference to metro: metro.java.net which is a library for web services so I'm guessing that's right. Download it, add a library, then add the library to your project. – Vincent Ramdhanie Jun 1 '11 at 21:30
Okay, I got the metro library referenced, by right clicking on Libraries and choosing Properties, I was able to create "Create" a library and added metro's jar files to it, which seems to have worked. However, I can't find JAX-WS-ENDORSED anywhere. I searched under Libraries and in the properties dialog, and don't see it. Any other places that might make it think it needs this reference? I know where the jar files are that it needs for this, but I can't find the "JAX-WS-ENDORSED" reference anywhere so I can't remove it or correct it. – notfed Jun 1 '11 at 22:00
If you right click on the project and click "Resolve Dependencies" do you get the choice there to remove it? – Vincent Ramdhanie Jun 1 '11 at 22:41
I see "Resolve Reference Problems..." which just opens the dialog again (the one that opens as soon as I open the project). In that dialog, when I click "Resolve..." (the only button in the dialog), it just opens the Library Manager--no sign of any JAX-WS-ENDORSED in the library manager. – notfed Jun 2 '11 at 12:52
feedback

You may want to right click on your project, go to properties -> Libraries.

Remove the JAX-WS-ENDORSED library, and try using JAX-WS 2.2

Also remove metro and try adding METRO 2.0

That may solve your problem.

You may also want to right-click on your web service references and select

Edit Web Service Attributes

Then on wsimport Options tab see if xendorsed is set to true.

UPDATE

You may need to close netbeans and then open it again, and it may work. I was having a problem similar and I just did that and it worked.

The only difference, and it may not be needed, is that I also added the JAXB 2.2 library, but that was because I was trying to solve a compilation error.

link|improve this answer
feedback

If it is still needed, I had the same situation when opened a netbeans 6.9 project in netbeans 7. There is no way to resolve the 'jaxb-endorsed' (in my case was jaxb and not jaxws) reference using the libraries window.

I found a endorsed.classpath property in the nbproject/project.properties file. I still not sure what is its purpose, but in this property I found the bad reference to jaxb-endorsed.classpath, so I deleted, closed netbeans and opened again, and the reference problem has gone.

I already have Jaxb 2.2 library added to my project, so it is working good with the modification I did to the project.properties.

I hope it helps.

link|improve this answer
feedback

I had a similar problem : DO NOT DELETE THE JAX-WS-ENDORSED - remind me to downvote. I had to go to the imported project > resolve reference problems dialogue > delete the references from there which were pointing to the old NB folders - pic : enter image description here

and then create the throwaway web service as suggested by William Scott and then add the newly created jars :enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.