On 5/15/12 12:24 PM, ns_dhillon_at_hotmail.com wrote:
> Thanks for your response Martin, let me clarify myself again...
> 1. Yes, I am referring to
> com.sun.xml.internal.ws.developer.JAXWSProperties, this class exists in
> JAX-WS RI bundled with JDK 1.6.29 but not in JDK 1.6.25.
I actually don't know the history, but this is because of newer
implementation versions integrated to JDK 6u releases. Since JDK7/8 we
don't plan to deliver any larger updates within jdk update releases so
that the code stays more stable.
The properties are repackaged together with package names in jdk (this
was done in order to not mix JDK internal with standalone classes), thus
you have to add 'internal' when using impl from JDK.
When using outside of spec (proprietary) properties, I'd recommend to
bundle standalone jaxws with your application so that internal jaxws
changes do not break your code (not that there are any planned) and you
don't need to depend on anything 'internal'.
MartiNG