I am absolutely sure that I am missing something simple here.
I use netbeans to create the web service jax-ws and the client in two separate projects, and I have some user bindings that I added to the client using the interface in net beans. It all seems to work fine, but from time to time after changing the service and redistributing the xsd location, it seems to change from /ServiceName?xsd=1 to /ServiceName?xsd=2 , which stops my user bindings.
I can simply configure the bind files that have worked the last several times, but the last time some content remains in ?xsd=1 is the definition for stringArray , which seems to cause an error when I try to update the client. Here is the error I get:
Two classes have the same XML type name "{ http://jaxb.dev.java.net/array } stringArray". Use @ XmlType.name and @ XmlType.namespace to give them different names.
Any suggestions would be greatly appreciated!
source share