i have webservice [JAX-WS] that contain this method :
@WebMethod
public List<String> getNumber() {
List<String> s = new ArrayList<String>();
s.add("test1");
s.add("test2");
s.add(null);
return s;
}
also , i have webservice client that call above webservice.but when get List, size of list is 2. how can i pass null value from webservice to client ?