Skip to content

Instantly share code, notes, and snippets.

@nikosvaggalis
nikosvaggalis / gist:062d34b0654fb1ecf27c14b3d3525af8
Created May 11, 2017 19:03
Perl HL7 Gazelle Validation as part of article "Health Level 7 with Perl" on i-programmer.info
#Calling Gazelle HL7 v2.x validation web service
#Nikos Vaggalis
#http://www.i-programmer.info/programming/perl/9920-health-level-7-hl7-with-perl.html
#license:Artistic 1.0
use XML::Compile::SOAP::Trace;
use XML::Compile::WSDL11;
use XML::Compile::SOAP11;
use XML::Compile::Transport::SOAPHTTP;
use XML::Compile::SOAP::Trace ;
use XML::LibXML;
@nikosvaggalis
nikosvaggalis / gist:aa0e6a2635e02429fbe4388c1c840cea
Last active May 11, 2017 19:03
Perl HL7 message construction as part of article "Health Level7 with Perl" on i-programmer.info
#Creating an HL7 v2.6 message
#Nikos Vaggalis, www.i-programmer.info
##http://www.i-programmer.info/programming/perl/9920-health-level-7-hl7-with-perl.html
#license:Artistic 1.0
use Net::HL7::Message;
use Net::HL7::Segment;
use Net::HL7::Segments::MSH;
use Time::Piece;
use strict;