I am creating a SOAP service using JAX-WS and JAXB. There is a count param. How can I using a costomize DataTypeConvert to convert it? I want to convert an Integer(not a POJO) param object by my costomisze DataTypeConvert. Because if the SOAP message contain "count" tag, this value will be set to 0, but if the SOAP message without "count" tag, this value will be set to null. I want make set this param to null in both two scenarios. If the Integer field in a POJO, I can use @XmlJavaTypeAdapter to convert it. But @XmlJavaTypeAdapter can't use on an Integer param which driectly in the method.
@WebMethod
public Team getTeamByCondition(@WebParam(name = "Name") String name,
@WebParam(name = "Condition") String condition,
@WebParam(name = "Count") Integer count) {
}
If there anyone can tell me how JAX-WS convert params?