I got a new SOAP JAR partner from a teammate and am busy integrating it into my application. I put the JAR in the appropriate path, overwriting the previous version. I updated my workspace, performed Clean and Build, but ...
... I cannot see any of the classes in the JAR through intellisense, although the code I use from the JAR will compile and execute correctly. In addition, Eclipse is still trying to use the previous version of the JAR, because when I do the “import fixes”, it re-imports the old classes, not the new ones.
The code builds and runs, but I have to refer to classes absolutely, and not relatively:
org.acmewidgets.soap.inputs.HeaderType header = new org.acmewidgets.soap.inputs.HeaderType()
Instead
HeaderType header = new HeaderType()
The previous version of the JAR did not require this.
How to make Eclipse use old links and use new ones? Or, Eclipse runnin 'fine, and my new JAR is suspected?
Thank!
source
share