New Post: Development plan?
Thanks for the great work! I found some errors in the source code, like "Allergies" in CCD was mapped to "Alerts", which is a typo I guess. Also the MDHT for Java provide more functions, I was...
View ArticleNew Post: Development plan?
Thanks for the great work! Thanks for the first useful comment for almost 4 months :-/ I found some errors in the source code, like "Allergies" in CCD was mapped to "Alerts", which is a typo I guess....
View ArticleCreated Unassigned: ParseNarrative not working [1896]
If you run Test Method "TestParseNarrative", it suppose to read the html, but it's not.
View ArticleNew Post: Development plan?
I just reported an issue. There are some other feature request, I'll post them later. The SDK is very useful. It's not popular because it focus on a niche area. The MDHT is on HL7 official website, I...
View ArticleCreated Unassigned: Make xml property writeable. [1897]
Like the ParseNarrative tool, I hope all the components can load XML directly. The object model is handy most of time, but some time write the XML directly will be more efficient.
View ArticleNew Post: Development plan?
How did you make the NMatrix to run? I tried it for couple days, it the xsd file read external xsd files by using schemalocation, it will fail.Also for the schemathron validation for CCD, never make it...
View ArticleNew Post: Development plan?
using NMatrix.Schematron; ... // stream is of type System.IO.MemoryStream Validator v = new Validator(); var vSchema = new Schema(); var rulesPath =...
View ArticleNew Post: Effective Date High and Low
Greetings! The library has been a godsend, but I'm having issues with one little detail. When I try to setup High and Lows for EffectiveTimes for lets say an Allergy Intolerance Observation...
View ArticleNew Post: Effective Date High and Low
Never mind, found the EffectiveTime.Init() method. It allows me to set High and Low with IVXB_TS instances. Keep-up the good work! This is a great library.
View ArticleNew Post: Effective Date High and Low
Yes, the Init() method should work for your case. Initialization of an interval with constructor looks better, but the library is COM-compatible, and COM does not support constructors with parameters,...
View ArticleNew Post: Extensions (Specifically Race Code)
Hey! This SDK has literally been my savior, but there is one bit of functionality that I can't seem to find... CDA R2 allows for extensions. For instance, I need to specify multiple races if the...
View ArticleNew Post: Extensions (Specifically Race Code)
It's possible but not easy and requires some source code modification :-/ Let me explain of how the library core works. Internally it uses serializable classes generated by the xsd.exe tool. As far as...
View ArticleCommented Unassigned: ParseNarrative not working [1896]
If you run Test Method "TestParseNarrative", it suppose to read the html, but it's not.Comments: ** Comment from web user: ppayun ** I found the problem by myself. The html input must be encoded by...
View ArticleReviewed: HL7 SDK 1.0.4 (Jan 18, 2014)
Rated 5 Stars (out of 5) - I've downloaded CDAR2.Net (they charge $150 for dll, then want $2000 for the source code) , looked at CDATools (all java) and Everest (not sure if Canadian document specs...
View ArticleNew Post: Not Able to add IObservation Value.
Hi All, We are using this HL7Sdk for Creating CDA Document but we got stuck at one place where we need to add Value tag in IObservation. Please let us know how to create it. The blow XML we are trying...
View ArticleNew Post: Not Able to add IObservation Value.
Observation.value is actually a collection of ANY:[TestMethod] public void TestAddObservationValue() { var obs = new Observation(); var obsValueAsCD = new CD(); obs.EffectiveTime = new...
View ArticleNew Post: Not Able to add IObservation Value.
Hi dmitryab, Thanks for Replying that's really helpful. I am getting problem while creating the below XML(NAME Tag) :<participant typeCode="CSM"> <participantRole classCode="MANU">...
View ArticleNew Post: Not Able to add IObservation Value.
name is also a collection (in your case, of PN type): var p = new Participant2(); p.TypeCode = "CSM"; p.ParticipantRole.ClassCode = "MANU"; var pe = p.ParticipantRole.AsPlayingEntity; pe.ClassCode =...
View ArticleNew Post: Not Able to add IObservation Value.
Hi dmitryab, Thanks for Replying that's really helpful. Just have a question like which date format i should use to add date in XML Thanks, Shashwat
View ArticleNew Post: Not Able to add IObservation Value.
Just have a question like which date format i should use to add date in XML Date/time formats are defined by the HL7 v3 datatypes specification. The TS class accepts both string values (with no...
View Article