Reputation: 4259
I am new to this HL7 messages and started working on them today. I hav gone though some of the tutorials and videos over web
I have understood that there is certain format that the messages will be transformed across HIS. I want to know whether we can actually decode the messages into a text by using some tool or an API. Im more convenient with .NET related things if there are any but anything that are available would do though. I have tried nHapi API for .NET but i am not sure which api methods i should use
Upvotes: 0
Views: 1959
Reputation: 8145
MSDN: Microsoft BizTalk → Programming Guide → Processing HL7 Messages → Message Encodings provides some overview of the pipe and hat
and xml
message formats.
The most correct source of information are specification documents which you can download for free from hl7.org website.
As for the nhapi
tutorials and cook books, you can study what's available for hapi and then transfer your Java
knowledge to C#
.
Upvotes: 2