任何人都可以翻译 X12 271 医疗保健回复

发布于 2024-07-16 21:23:46 字数 1542 浏览 7 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最美不过初阳 2024-07-23 21:23:46

有一个开源 X12 解析器(OopFactory X12 Parser:https://x12parser.codeplex.com)可以执行此操作为你。

将任何 X12 文档转换为 Xml:

FileStream fstream = new FileStream("Sample1.txt", FileMode.Open, FileAccess.Read);
var parser = new X12Parser();
Interchange interchange = parser.Parse(fstream);
string xml = interchange.Serialize();

将任何 X12 文档转换为 Html:

var htmlService = new X12HtmlTransformationService(new X12EdiParsingService(suppressComments: false));
Stream ediFile = new FileStream("Sample.txt", FileMode.Open, FileAccess.Read);
string html = htmlService.Transform(new StreamReader(ediFile).ReadToEnd());

此处有更多详细信息:https://x12parser.codeplex.com/wikipage?title=Parsing%20an%20837%20Transaction&referringTitle=Documentation

要将 X12 271 响应加载到 .Net 对象中,您可以使用:

FileStream fstream = new FileStream("Sample1.txt", FileMode.Open, FileAccess.Read);
var service = new EligibilityTransformationService();
EligibilityBenefitDocument eligibilityBenefitDocument = service.Transform271ToBenefitResponse(fstream);

There is an open source X12 parser (OopFactory X12 Parser: https://x12parser.codeplex.com) that does this for you.

To convert any X12 document to Xml:

FileStream fstream = new FileStream("Sample1.txt", FileMode.Open, FileAccess.Read);
var parser = new X12Parser();
Interchange interchange = parser.Parse(fstream);
string xml = interchange.Serialize();

To convert any X12 document to Html:

var htmlService = new X12HtmlTransformationService(new X12EdiParsingService(suppressComments: false));
Stream ediFile = new FileStream("Sample.txt", FileMode.Open, FileAccess.Read);
string html = htmlService.Transform(new StreamReader(ediFile).ReadToEnd());

More details here: https://x12parser.codeplex.com/wikipage?title=Parsing%20an%20837%20Transaction&referringTitle=Documentation

To load an X12 271 response into a .Net object, you can use:

FileStream fstream = new FileStream("Sample1.txt", FileMode.Open, FileAccess.Read);
var service = new EligibilityTransformationService();
EligibilityBenefitDocument eligibilityBenefitDocument = service.Transform271ToBenefitResponse(fstream);
已下线请稍等 2024-07-23 21:23:46

DataDirect Technologies 销售一个转换器,可以将其转换为 XML。

DataDirect Technologies sells a converter that will translate it into XML.

箹锭⒈辈孓 2024-07-23 21:23:46

我推荐 perl 或 python 进行原型设计。 一旦你有了你想要的行为,你就可以:

  • 编译整个东西
  • 让程序员为太慢的部分编写 C(无论你需要什么风格)。
  • 使用原型作为您需要的任何语言的开发规范。

I recommend perl or python for protoyping. once you have behavior you want, you can:

  • compile the whole thing
  • have a programmer write C(whatever flavor you need) for the parts that are too slow.
  • use the prototype as the spec for development in whatever language you need.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文