I am making SOAP web services and when I use
@XmlAttribute(name = "asd:resource")
private String asdResource;
I can not import my wsdl in SoapUI. It shows: Error: The value 'asd:resource' is an invalid name.
And when I use only @XmlAttribute
I can import my project but in the response I am receiving it like asdResource without :.
That is why I used XmlAttribute(name= "asd:resource")
My question is what can cause this problem and how can i fix it.