Package es.emergya.webservices.ServiceStub

Examples of es.emergya.webservices.ServiceStub.GetPosicionesIncidenciasResponse


    try {
      ServiceStub client = WSProvider.getServiceClient();
      GetPosicionesIncidencias param = new GetPosicionesIncidencias();
      param.setIdIncidencias(idIncidencias.toArray(new String[0]));
      param.setNombreUsuario(nombreUsuario);
      GetPosicionesIncidenciasResponse res = client
          .getPosicionesIncidencias(param);

      posiciones = res.get_return();

      for (Posicion p : posiciones) {
        addIncidencia(p.getIdentificador());
      }
    } catch (RemoteException e) {
View Full Code Here

TOP

Related Classes of es.emergya.webservices.ServiceStub.GetPosicionesIncidenciasResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.