Ver Mensaje Individual
  #7 (permalink)  
Antiguo 18/06/2013, 13:32
Link_OOT
 
Fecha de Ingreso: noviembre-2008
Mensajes: 47
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: Duda exportando proyecto JAXB

Hay dos lineas que dan problemas:
  • ServicioWebService ss = new ServicioWebService(wsdlURL, Constantes.SERVICE_NAME);
  • ServicioWeb port = ss.getServicioWebPort();

El metodo es:
Código:
URL wsdlURL = ServicioWebService.WSDL_LOCATION;
        ServicioWebService ss = new ServicioWebService(wsdlURL, Constantes.SERVICE_NAME);
        ServicioWeb port = ss.getServicioWebPort();  
        {
        	String _probando__return = port.identificarse(textNombre.getText(), password.getText());
	        Gson gson=new Gson();
        	return gson.fromJson(_probando__return, Comercial.class);
        }