IIOP通信以外でrtcname形式、rtcloc形式でRTCへアクセスできるようにする#1015
Open
Nobu19800 wants to merge 6 commits intoOpenRTM:masterfrom
Open
IIOP通信以外でrtcname形式、rtcloc形式でRTCへアクセスできるようにする#1015Nobu19800 wants to merge 6 commits intoOpenRTM:masterfrom
Nobu19800 wants to merge 6 commits intoOpenRTM:masterfrom
Conversation
3 tasks
n-ando
previously approved these changes
Jan 24, 2022
n-kawauchi
reviewed
Aug 30, 2024
n-kawauchi
left a comment
There was a problem hiding this comment.
最新masterへマージしたところコンフリクトしました。
>git merge featue/sslhttpconf
Auto-merging CMakeLists.txt
Auto-merging etc/CMakeLists.txt
Auto-merging src/lib/rtm/CORBA_RTCUtil.cpp
Auto-merging src/lib/rtm/CORBA_RTCUtil.h
Auto-merging src/lib/rtm/Manager.cpp
CONFLICT (content): Merge conflict in src/lib/rtm/Manager.cpp
Auto-merging src/lib/rtm/Manager.h
Auto-merging src/lib/rtm/ManagerServant.cpp
Auto-merging src/lib/rtm/NamingManager.cpp
CONFLICT (content): Merge conflict in src/lib/rtm/NamingManager.cpp
Auto-merging src/lib/rtm/PortBase.cpp
Auto-merging utils/openrtmNames/NamingContext.cpp
Automatic merge failed; fix conflicts and then commit the result.
Author
|
動作確認の手順は以下の通り。 #1003 と同じ手順でhttpのネームサーバー、ConsoleInコンポーネントを起動する。 ConsoleOutコンポーネントで 以下はネームサーバーからRTCにアクセスする(rtcname)のコマンド。 次にマスターマネージャからRTCにアクセスする(rtcloc)手順を試す。 次にConsoleInコンポーネントを起動するが、これはrtcnameの手順と同じ。 ConsoleOutコンポーネントを起動してデータポートの接続を確認する。 これを#1003 と同様に、https、ws、wss、sslについても動作を確認する。 |
|
最新masterへマージしてUbuntu24.04上で動作確認しましたが、ConsoleOut側がエラーになります。
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Identify the Bug
rtcname形式(指定アドレスのネームサーバーからRTCを取得)、rtcloc形式(指定アドレスのマスターマネージャからRTCを取得)の機能を使う場合、IIOPの通信プロトコルのみ使用できるようになっており、SSLIOPやHTIOP等は使用できない。
Description of the Change
以下のように
rtcname、rtclocの後に通信プロトコル名を指定することによりSSLIOP、HTIOP通信などの通信を使用可能にした。この機能の実装のため、rtcname形式、rtcloc形式の文字列から通信プロトコル名、アドレス、RTC名を取得する
CORBA_RTCUtil::RTCURIObjectを実装した。Verification