Me parecía tener la siguiente excepción cuando se trata de desplegar mi aplicación:java.util.List es una interfaz, y JAXB no puede manejar las interfaces
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
java.util.List is an interface, and JAXB can't handle interfaces.
this problem is related to the following location:
at java.util.List
at private java.util.List foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse._return
at foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse
java.util.List does not have a no-arg default constructor.
this problem is related to the following location:
at java.util.List
at private java.util.List foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse._return
at foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse
Mi código funcionaba bien hasta que he cambiado el tipo de retorno de la lista a la lista < Lista <RelationCanonical> >
Aquí es el servicio web parcial:
@Name("relationService")
@Stateless
@WebService(name = "RelationService", serviceName = "RelationService")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public class RelationService implements RelationServiceLocal {
private boolean login(String username, String password) {
Identity.instance().setUsername(username);
Identity.instance().setPassword(password);
Identity.instance().login();
return Identity.instance().isLoggedIn();
}
private boolean logout() {
Identity.instance().logout();
return !Identity.instance().isLoggedIn();
}
@WebMethod
public List<List<RelationCanonical>> getRelationsFromPerson(@WebParam(name = "username")
String username, @WebParam(name = "password")
String password, @WebParam(name = "foedselsnummer")
String... foedselsnummer) {
......
......
......
}
También he intentado eliminar el @SOAPBinding y probar el valor predeterminado, pero ocurre el mismo resultado. agradecería cualquier ayuda
ACTUALIZACIÓN
quiero señalar algo. Cambié todas las listas a ArrayList, y luego las compilé. La razón por la que digo compilada y no funciona es porque se comporta de manera extraña. Obtengo un objeto de tipo: RelationServiceStub.ArrayList pero el objeto no tiene métodos de obtención o no se comporta como una lista. También traté de lanzarlo a una lista, pero eso no funcionó.
Tenga en cuenta que esto es después de haber usado Axis 2 y wsdl2java Entonces sí, ahora se compila, pero no sé cómo sacar los datos.
Sí ya he mencionado en la pregunta que hice esto, pero aún no funcionaba. Lee la actualización –