I'm using JAX-WS 2.1 (uses JAXB 2.1) under WAS7.0 app server. I've written a client code and below is the snippet from my request xml.
<additionalCriteria>
<ns5:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<ns5:maxResultsToReturn>10</ns5:maxResultsToReturn>
<ns5:nextResultBlockKey xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<ns5:scope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<ns5:sortBy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<ns5:sortOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</additionalCriteria>
As you can see, the attribute xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
is getting added to each element. I dont want this in my request. Can any one suggest please as it is blocking my project delivery?