Web service error

I am trying to make a web service, but I am getting this error

IWAB0506E Error when copying Axis jar files to web project java.io.FileNotFoundException: /lib/saaj.jar at 
+8
java eclipse web-services
source share
2 answers

Looks like a bug in Eclipse WTP - you're not alone .

Following this other topic, you're in luck with deleting (moving / renaming) one library:

 javax.xml.soap_1.3.0.v200904281458.jar 

Or try updating your environment to the latest and largest.

+9
source share

This second patch does the same, but instead of using the properties of the java system, it uses the hidden preference for eclipse as a flag to disable the copy.

You can enable this preference by editing the file below.

.metadata.plugins \ org.eclipse.core.runtime.settingsorg.eclipse.jst.ws.axis.consumption.ui.prefs

add line disableAxisJarCopy=true

0
source share

All Articles