Skip to content
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.

File in META-INF/services has deprecated name #95

Open
jcflack opened this issue Jun 15, 2018 · 0 comments
Open

File in META-INF/services has deprecated name #95

jcflack opened this issue Jun 15, 2018 · 0 comments

Comments

@jcflack
Copy link

jcflack commented Jun 15, 2018

I had an application that was written back when J2SE included SAAJ, so of course it broke after upgrading from Java 8, and I grabbed jaxws-ri from Maven and put the necessary jars on the classpath and the application worked again, but with this warning:

Using deprecated META-INF/services mechanism with non-standard property:
javax.xml.soap.MetaFactory. Property javax.xml.soap.SAAJMetaFactory should be used instead.

The application calls SOAPConnectionFactory.newInstance and MessageFactory.newInstance, ultimately causing the ServiceLoader to find the META-INF/services/javax.xml.soap.MetaFactory file.

I was able to make the warning go away by modifying saaj-impl.jar, simply extracting the javax.xml.soap.MetaFactory service file, deleting it from the jar, then re-adding it under the non-deprecated name javax.xml.soap.SAAJMetaFactory. With that, my application worked fine and gave no warning, though someone more knowledgeable than I will have to judge whether that's a fully correct fix.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant