1

WSO2 Governance Registry 5.1 をインストールしましたが、これを使用するのは初めてです。管理コンソールに次のようなメッセージが表示されることに気付きました。

バージョン 5.1.0 以降、管理コンソールからのガバナンス操作の実行は非推奨になりました。代わりにパブリッシャー アプリ ( https://localhost:9443/publisher ) を使用してください。

Publisher リンクに移動すると、新しい WSDL、新しい SOAPService、または新しいエンタープライズ アプリケーションなどを作成できます。

しかし、管理コンソールで作成できるように、新しいエンドポイントまたは新しいサービスを作成できません。

また、管理とは異なり、パブリッシャーとのより複雑な関係を追加することはできません。たとえば、管理では、「collaboratesWith」タイプの関係を作成できます。管理ページには、それを行うためのフリーテキストが表示されます。

パブリッシャーでも「UsedBy」関係を作成できません..

問題は、パブリッシャーの Web ページはまだ WIP であり、すべての機能がまだ残っているわけではないということです。

ありがとう!

4

2 に答える 2

0

Found the solution in the documentation, who would've thought.

You can add custom association types in WSO2 G-Reg, and add them to assets using the G-Reg Publisher. To create a new association type, you can specify it to be available for default or specific asset types by defining the new association type within the default, restservice, and soapservice elements in the /repository/conf/governance.xml file. Default association type denotes all other asset types that are not overridden. The other two association types(i.e restservice, and soapservice)denote the overridden asset types, which are REST Services and SOAP Services. For an example, if you want to add a new association named criticalTo, and make it available only for SOAP Services, modify the soapservice association configuration as shown below. The values within the tag are the comma-separated asset types that you can associate using the criticalTo association type with a SOAP service.

https://docs.wso2.com/display/Governance510/Adding+Associations+in+the+Publisher

于 2016-04-15T06:23:47.870 に答える