WSO2 API Manager 2.0.0 - 发布者登录时出错

时间:2016-08-07 15:57:43

标签: wso2 wso2-am transport publisher api-manager

我在google云虚拟机上全新安装了WSO2 API Manager 2.0.0。我可以很好地登录我的碳控制台并访问发布者根目录。

当我尝试登录我的发布商控制台(https:// {my_ip}:9443 / publisher)时,我收到以下错误Error! Transport level information does not match with SOAP Message namespace URI

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。不得不禁用CSRFPreventionConfig。有人应该在WSO2 Jira开一张票。

要停用CSRFPreventionConfig,请打开carbon.xml<wso2am-home>/repository/conf)并将Enabled代码的布尔值设置为false

<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>