Click here to Skip to main content
15,884,628 members
Articles / Programming Languages / C#

Storing ECG to a PACS

Rate me:
Please Sign up or sign in to vote.
4.80/5 (10 votes)
16 Oct 2008Apache1 min read 107.1K   7.2K   48  
An article on a service that will store an ECG copied to a directory at a PACS. (supported formats SCP-ECG, DICOM-ECG and a recent version of HL7 aECG)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<appSettings>
		<add key="ImportDir" value="C:\ecg2pacs" />
		<add key="EraseOnSuccess" value="true" />
		<!-- configuration items for the DICOM-ECG format -->
		<add key="Mortara Compatibility" value="true"/>
		<!-- configuration items for the DICOM PACS -->
		<add key="Server" value="127.0.0.1" />
		<add key="AESCU" value="ANYSCU" />
		<add key="AESCP" value="STORESCP" />
		<add key="Port" value="104" />
	</appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer Erasmus MC
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions