package org.tempuri; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; import com.mirth.connect.connectors.ws.AcceptMessage; import com.mirth.connect.connectors.ws.DefaultAcceptMessage; import com.mirth.connect.connectors.ws.LoggingSOAPHandler; import com.mirth.connect.connectors.ws.WebServiceDispatcher; import com.mirth.connect.connectors.ws.WebServiceReceiver; @WebService(targetNamespace = "http://tempuri.org/", name = "ConsultaPacientesSoap") public class Operacion_QueryPacientes extends AcceptMessage { public Operacion_QueryPacientes(WebServiceReceiver webServiceReceiver) { super(webServiceReceiver); } @WebMethod(action = "Operacion_QueryPacientes") public String Operacion_QueryPacientes(@WebParam(name = "part", targetNamespace = "http://tempuri.org/") String param) { String response = webServiceReceiver.processData(param); if (response != null) { return response; } return null; } }