p27
p27

Reputation: 2222

web service error

i am trying to make 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 

Upvotes: 9

Views: 8959

Answers (3)

Gati Krishna Meher
Gati Krishna Meher

Reputation: 21

Browse tho the eclipse workspace:

<workspace>/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.ws.axis.consumption.ui.prefs

Sometime, if you do not have this file created, then create this file Add the following entry and save the file:

eclipse.preferences.version=1
disableAxisJarCopy=true

Upvotes: 0

user3337443
user3337443

Reputation: 11

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

This preference can be enabled by editing the below file

<workspace>/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.ws.axis.consumption.ui.prefs

add the line disableAxisJarCopy=true

Upvotes: 1

Andreas Dolk
Andreas Dolk

Reputation: 114757

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

Following this other thread, you be lucky with deleting (moving/renaming) one library:

javax.xml.soap_1.3.0.v200904281458.jar

Or try to upgrade your environment to the latest and greatest.

Upvotes: 9

Related Questions