i've created my stub classes using **maven cxf-codegen-plugin** but now 
everytime i create a request the tag gets a stupid ***ns*** prefix

this is what I have

    <ns2:HealthCheckRequest xmlns="http://someurl.com/"; 
xmlns:ns2="https://someurl.com/";>

this is what I want

    <HealthCheckRequest xmlns="http://someurl.com/";>

how can i avoid that? do i need to change something in the xsd or wsdl file?

also I've noticed that this maven plugin generates a package-info.java
that starts with

@javax.xml.bind.annotation.XmlSchema(namespace = "http://someurl.com/";, 
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)

Reply via email to