新しい投稿

Encontrar

記事
· 2020年10月25日 2m read

%Net.HttpRequest クラスを使用して https のアクセスでエラーが発生したときに確認したいこと

これはInterSystems FAQ サイトの記事です。

%Net.HttpRequest クラスの SSLConfiguration プロパティに SSL/TLS 構成の「クライアント」構成名が指定されているかご確認ください。

%Net.HttpRequest クラスを使用して、https の url にアクセスするためには、以下のドキュメントに記載されている SSL/TLS 構成 の「クライアント」構成を作成して指定した名前を SSLConfiguration プロパティに指定する必要があります。

SSL/TLS構成のクライアント構成方法

管理ポータルの [システム管理] > [セキュリティ] > [SSL/TLS構成] メニューを開き、「構成名」に任意名を設定し、「保存」ボタンをクリックします(そのほかの構成パラメータは、デフォルト値で作成します)。

 

実行例は以下の通りです(https://www3.nhk.or.jp/news/ にアクセスしています)。

set httprequest=##class(%Net.HttpRequest).%New()
set httprequest.Https=1
set httprequest.Server="www.nhk.or.jp"
set httprequest.SSLConfiguration="test1"  //設定したSSL/TSL構成名を指定
set st=httprequest.Get("/news/")
write $ZCVT(httprequest.HttpResponse.Data.Read(1000),"I","UTF8")  // 取得できたレスポンスの一部を表示
<!DOCTYPE HTML>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7 eq-ie6"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8 eq-ie7"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9 eq-ie8"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# website: http://ogp.me/ns/website#">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="requiresActiveX=true" />

<title>NHKニュースサイト 日本全国・世界の速報、最新情報|NHK NEWS WEB</title>
<meta name="robots" content="noodp,noarchive">
<meta name="keywords" content="NHK,ニュース,NHK NEWS WEB" />
<meta name="description" content="NHKのニュースサイト「NHK NEWS WEB」。国内外の取材網を生かし、さまざまな分野のニュース をいち早く、正確にお伝えします。ニュース

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
質問
· 2020年10月19日

POCT01-A protocol for glucose monitoring devices?

Hi 

Has anyone used Health Connect/Ensemble to receive results directly from POCT devices (Glucose monitors etc)?

I've been looking for information on the POCT01-A  protocol, and as far as I can tell it is a HL7v3 XML schema, I should be able to get results from these devices, though I expect I need a webserver endpoint. (though I can't find any reference in the Health Connect documentation)

Does anyone have any knowledge of this?

KR

 

Stephen

EDIT:  from the silence I'm wondering if this in normally handed off to specialist middleware?

2 Comments
ディスカッション (2)1
続けるにはログインするか新規登録を行ってください
InterSystems公式
· 2020年10月16日

October 15, 2020 - Alert: HS2020-08: HealthShare Alerts

Dear HealthShare Customer:

This post is part of the HealthShare HS2020-08 Alert communications process.  The same information is also distributed:

There are 2 alerts in the HealthShare HS2020-08 Alert communication, and outlined in the Alert Summary table below.  The detail is contained in the attached document: HealthShare HS2020-08.

These alerts do not affect HealthShare Health Connect or HSAP customers

Alert Product & Versions Affected Risk Category & Score
HS2020-08-01: Negation in CDA Documents is Ignored by HealthShare. Update to Alert HS2020-04-01 All versions of HealthShare Information Exchange and Unified Care Record. Varies based on data
HS2020-08-02: CSRF Vulnerability when using HealthShare as a SAML Service Provider for Single Sign-On from a Third-Party Application

InterSystems HealthShare® Unified Care Record 2019.1, 2019.2, and 2020.1

3-Medium Risk
(Security)

If you have any questions regarding this advisory, please contact the Worldwide Response Center (WRC) at support@InterSystems.com
or  +1.617.621.0700., and reference “HealthShare Alert HS2020-08”.

ディスカッション (0)0
続けるにはログインするか新規登録を行ってください
お知らせ
· 2020年10月16日

New Video: Introduction to InterSystems Reports

Hi Community!

Enjoy watching the new video on InterSystems Developers YouTube:

⏯ Introduction to InterSystems Reports

 

InterSystems Reports, powered by Logi Analytics, is a report generation tool that enables you to rapidly create and view visual reports of your data. This video introduces you to InterSystems Reports and its core components.

➡️ Subscribe to InterSystems Developers YouTube

Enjoy and stay tuned!

ディスカッション (0)0
続けるにはログインするか新規登録を行ってください
質問
· 2020年10月13日

replicate file versioning of VMS in UNIX

Hi team

We are migrating the Code set of VMS to Unix. 
In this process we are also taking care of all I/O operations of file. 
In VMS, whenever we create a file, it generates a Version # associated with the file. Best part is we have a common library which we use to OPEN/USE/CLOSE/DELETE/RENAME/COPY the file.
Now, when we talk about VMS on cache, if we two processes creates a file "ABC.TXT", for 1st process it will create the version #1 and for second it will create #2.
This versioning cache handles internally, like which cache process is referring to #1 and which one for #2

Can someone help me to understand how cache handles / deal in such scenarios, like which process is referring to which number, as we are not modifying the filename when we issue USE / CLOSE command, it is cache process which internally take care of it ? 

Thanks in Advance

Paras Batheja

4 Comments
ディスカッション (4)3
続けるにはログインするか新規登録を行ってください