go to post Luis Angel Pére... · Apr 26, 2024 And you can take a look to this article from @Yuri Marx https://community.intersystems.com/post/debug-objectscript-code-using-vs...
go to post Luis Angel Pére... · Apr 25, 2024 Regarding the documentation looks like you need to configure the port in the Business Service: (Configured Web Services exposed using the SOAP Inbound Adapter may also be invoked with this URL parameter but because each configured Inbound Adapter listens on its own TCP/IP port this parameter is just a safety check for them.) https://docs.intersystems.com/iris20241/csp/documatic/%25CSP.Documatic.c...
go to post Luis Angel Pére... · Apr 12, 2024 Have you tried this package to parse HL7 from ER7 format to XML (and viceversa)? https://openexchange.intersystems.com/package/Healthcare-HL7-XML
go to post Luis Angel Pére... · Apr 12, 2024 The documentation is pretty clear, you have to include the external table as a subquery: FROM Sample.Person,(SELECT * FROM Mylink.Person) That means that you have to modify your view to use the external table in that way.
go to post Luis Angel Pére... · Apr 12, 2024 You can create your own HL7 schema to include the NTE segment for the ADT message, you will be able to configure the FileService to get HL7 messages based on your custom schema: https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.UI...
go to post Luis Angel Pére... · Apr 10, 2024 Have you checked this comment? https://community.intersystems.com/post/encoding-base64-stream-chunk-siz...
go to post Luis Angel Pére... · Apr 8, 2024 This article from @Kurro Lopez can help you: https://community.intersystems.com/post/how-send-messages-microsoft-teams
go to post Luis Angel Pére... · Apr 3, 2024 Have you tried to export it from 2014 and import it into 2018 instance using ^SECURITY command? https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
go to post Luis Angel Pére... · Apr 1, 2024 I used it with no problem for this application: https://community.intersystems.com/post/quinielaml-working-jwt-authentic... The error message talks about a restriction for unauthorized access to %Api.Atelier class, maybe that class override the /login?
go to post Luis Angel Pére... · Mar 26, 2024 I was Java developer for more than 15 years and for me to use arguments by reference was totally disgusting, you can use it in Java, but it's not very common, in Objectscript is the opposite, Output arguments are the rule, no the exception. Calling instance methods using variables not declared as arguments made me feel dirty.
go to post Luis Angel Pére... · Mar 23, 2024 Is the ID that you are using the same that was generated by the server?
go to post Luis Angel Pére... · Mar 14, 2024 PUT and DELETE works, but you have to use as id the generated by FHIR server, you can't use MRN or any other type of id.