0

Google クラウド VM に WSO2 API Manager 2.0.0 を新規インストールしました。Carbon コンソールに正常にログインし、パブリッシャー ルートにアクセスできます。

パブリッシャー コンソール (https://{my_ip}:9443/publisher) にログインしようとすると、次のエラーが表示されますError! Transport level information does not match with SOAP Message namespace URI

4

1 に答える 1

0

私は同じ問題を抱えています。CSRFPreventionConfig も無効にする必要がありました。誰かが WSO2 Jira でチケットを開く必要があります。

CSRFPreventionConfig を無効にするには、carbon.xml( ) を開いて、タグ<wso2am-home>/repository/confのブール値を に設定します。Enabledfalse

<CSRFPreventionConfig>
        <CSRFPreventionFilter>
            <!-- Set below to true to enable the CSRFPreventionFilter -->
            <Enabled>false</Enabled>
            <!-- Url Pattern to skip application of CSRF protection-->
            <SkipUrlPattern>(.*)(/images|/css|/js|/docs)(.*)</SkipUrlPattern>
        </CSRFPreventionFilter>
</CSRFPreventionConfig>
于 2016-10-03T21:47:29.990 に答える