go to post Luis Angel Pére... · Oct 16, 2023 How are you importing the Python library in your class? Have you declared your method language as Python? Did you see the package installed in the path defined by the documentation?
go to post Luis Angel Pére... · Oct 16, 2023 If you are getting: callresponse.%ClassName(): Ack And your code is: if (callresponse.%ClassName() = "consultarEstudiosDatosPacienteVNAResponse"){ set callresponse = ..respuestaConsultaEstudios Quit $$$OK } It will never send back respuestaConsultaStudios because the previous condition, try assigning respuestaConsultaEstudios to callresponse without it.
go to post Luis Angel Pére... · Oct 16, 2023 Maybe you can do a workaround for this problem creating a new Business Process to send respuestaConsultaEstudios and manage it from there, ignoring from EnrutadorConsultarEstudiosVNAv01r00 the null response that you receive from ConsultarEstudiosMedianteFind Another option could be define OnResponse method on ConsultarEstudiosMedianteFind and define the response properly.
go to post Luis Angel Pére... · Oct 16, 2023 Oh! forget what I said, I was thinking that you were calling a Business Operation all the time...remove the pOutput from the OnMessage method . I see what is the problem. Your BP is using the method OnMessage to do the C-FIND operation, but the OnResponse method is not receiving the response. Remove the pOutput references from your code and try with the following code: do ..%responseSet(..respuestaConsultaEstudios) Quit $$$OK Not sure if that would work.
go to post Luis Angel Pére... · Oct 16, 2023 Did you update the call from EnrutadorConsultarEstudiosVNAv01r00 to ConsultarEstudiosMedianteFind adding the variable by reference?
go to post Luis Angel Pére... · Oct 13, 2023 For the Quit you have to return the status, is not necessary to return the output variable. You have to update the call to Procesos.DICOM.ConsultarEstudiosMedianteFind adding the output variable as reference.
go to post Luis Angel Pére... · Oct 13, 2023 And the Quit is what is generating the null response. You have to avoid the async call and return the result using an output variable.
go to post Luis Angel Pére... · Oct 13, 2023 I suspect that the problem is that you are sending a SendRequestAsync to EnrutadorConsultarEstudiosVNAv01r00 that is the business process that called to Procesos.DICOM.ConsultarEstudiosMedianteFind, and after that you are doing the Quit, returning to EnrutadorConsultarEstudiosVNAv01r00 again.
go to post Luis Angel Pére... · Oct 11, 2023 Try adding a $$$TRACE in this method: Method OnAssociationReleased(pSourceConfigName As %String, pInput As EnsLib.DICOM.Notify.Released) As %Status { #dim tSC As %Status = $$$OK #; The association between this process and the operation has been released, so we are now #; not connected to the operation Set ..CurrentState="OperationNotConnected" ; Añadimos 11 10 2023 Set tSC=..SendRequestAsync("EnrutadorConsultarEstudiosVNAv01r00",..respuestaConsultaEstudios,0) Quit tSC } Maybe you are calling the BP from here with a null response.
go to post Luis Angel Pére... · Oct 11, 2023 Hi Yone! You can follow step by step the following article to create a REST web service from scratch: https://community.intersystems.com/post/creating-rest-service-iris As you can see this web service is not a Business Service, it's a web application that invoke a Business Service, I suggest you to use that way.
go to post Luis Angel Pére... · Oct 10, 2023 You can configure a transform creating a new message and defining another context variable with the same type than the original message as output, then you keep your original message in the request and the transformed message in the new variable.
go to post Luis Angel Pére... · Oct 10, 2023 Here you can see an example: ClassMethod ImportRawMatches() As %DynamicObject { Try { Do ##class(%REST.Impl).%SetContentType("application/json") If '##class(%REST.Impl).%CheckAccepts("application/json") Do ##class(%REST.Impl).%ReportRESTError(..#HTTP406NOTACCEPTABLE,$$$ERROR($$$RESTBadAccepts)) Quit set newRequest = ##class(QUINIELA.Message.OperationRequest).%New() set newRequest.Operation = "Import" set status = ##class(Ens.Director).CreateBusinessService("QUINIELA.BS.FromWSBS", .instance) set response = ##class(QUINIELA.Message.ImportResponse).%New() set response.Status = "In Process" set response.Operation = "Import" set status = instance.SendRequestAsync("QUINIELA.BP.ImportBPL", newRequest, .response) if $ISOBJECT(response) { Do ##class(%REST.Impl).%SetStatusCode("200") return response.%JSONExport() } } Catch (ex) { Do ##class(%REST.Impl).%SetStatusCode("400") return ex.DisplayString() } The key is this row: return response.%JSONExport()
go to post Luis Angel Pére... · Oct 10, 2023 Hi Yone! Your patientId is a param of the URL, you don't need to include it into the router map, to get the value you only need set patid = %request.Get("patientid")
go to post Luis Angel Pére... · Oct 10, 2023 Have you tried to change the timeout? The documentation says that timeout is defined in milliseconds, maybe you are waiting just 5 milliseconds. https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post Luis Angel Pére... · Oct 10, 2023 You can call the transformation from the BPL as the first step.
go to post Luis Angel Pére... · Oct 10, 2023 Here you can see an example of a Dockerfile with an IRIS, Nodejs and nginx: https://openexchange.intersystems.com/package/QuinielaML
go to post Luis Angel Pére... · Oct 10, 2023 Hi Lorenzo! I'm no sure if this is the reason, but I've defined a proxy for the Angular front-end. You can check proxy.config.json: { "/api/*": { "target": "http://iris:52773", "secure": false, "logLevel": "debug" } } All my requests to the server are using localhost:4200 and they are translated into iris:52773 after the request.
go to post Luis Angel Pére... · Oct 9, 2023 You can create a previous Business Rule to apply a transform before to the redirection to BPL. https://docs.intersystems.com/iris20232/csp/docbook/DocBook.UI.Page.cls?... In the transformation your can apply $EXTRACT function to the OBX.5 bigger than 510 and replace that OBX.5