- Log in to post comments
Happy Anniversary! Good Luck
Great Article!
Thank you! This is really helpful!
Thanks for the Tutorial!
Thank you Ashok!
I ran a test including control characters and Unicode characters. Only special characters within the range (0-31,127-159) are removed.
.png)
It is really helpful! Thank you!
Thank you! I will try this.
Hi Enrico,
Thanks for your response,
The inbound message doesn't have MSH:18 value. I tried using UTF-18 but didn't work. Is there any possibility to resolve the issue to decode the characters correctly?
This is TCP HL7 Service using class 'EnsLib.HL7.Service.TCPService' and adapter is EnsLib.HL7.Adapter.TCPInboundAdapter. while occuring the issue I set Default Char Encoding as "!iso-8859-1" but it is not working as expected. It is converting utf8 charctaer to '?'.
Thank you so much for a great article!
Congratulations!!
Hi Krishnaveni,
You can create custom class extends Ens.BusinessOperation and use the adapter as FTP Outbound Adapter
Parameter ADAPTER = "EnsLib.FTP.OutboundAdapter";
Write the below steps in Method sendStream() As %Status
{
Set path = "/tmp/data" (example)
Set sc = ..Adapter.FilePathSet(path)
// Write your code here
}
Thanks for the good info!
Have you seen is there any data issue in the resource json file?
Thank you Yaron for suggestion, it has been updated. Both the lines provide the same result.
Thanks,
Set time = "2024-07-04 13:58:43.628"
W !,##class(Ens.Util.Time).ConvertDateTime(time,"%q(1)","%q(0)")
20240704135843
You can try like this in routing rule Document.SourceConfigName.
Thank you Luis, I have updated query and it is working fine. Thank you so much for your response.
You can find the details in the below link
https://github.com/grongierisc/iris-healthtoolkit-service/blob/main/src…
Hi Prasanth,
https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.U… the documentation given the details how to apply api-key to the FHIR repository.
Set otherHeaders("X-API-Key") = "123"
Do clientObj.SetOtherRequestHeaders(.otherHeaders)
Congratulations to all the winners :)
deleted
deleted
Thank you Elijah & Michael for your reply.
Hi Luis,
I have run the command as mentioned in the document "C:\InterSystems\IRIS\bin>irispip install --target C:\InterSystems\IRIS\mgr\python numpy" and it created package in IRIS installation path C:\InterSystems\HealthConnect\mgr\python but library classes not installed in Studio. I am not sure about how to import Python classes into %SYSTEM/%SYS package.
I am planning to use [Language=python] and import python code into object script.
You can declare the Property to %Stream.GlobalCharacter and you can use code function and Write the content in the variable example are the below commands. It works for me.
Example:
Property Content As %Stream.GlobalCharacter;
Transformation in DTL :
Do target.Content.Write( source.ClinicalReport.content)
Congratulations All
Hi Prasanth,
you can refer the below links for your solution which helps to read text and decode the content.
Thank you Jeffrey, It really useful.