[ISS.0088.9112] An Exception was thrown in the server:com.wm.pkg.xslt.util.LocalizedTransformerException: [XSL.0002.9002] JAXP: Error during transformation - The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly.; Line#: 2; Column#: 17
____________________________________________________________________________________________________
I'm have an issue with a generated stubs, when I call this service using jax-ws I'm having this is error_ The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly
Probably is related with this: "xmlns="http://www.w3.org/2005/08/addressing", but I have no clue how to get it fixed. I tried to add:
```java
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2005/08/addressing", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED,
xmlns={
@XmlNs(prefix="wsa", namespaceURI="http://www.w3.org/2005/08/addressing")
})
```
at package-info. This didn't made any difference.
Hi!