我在谷歌云虚拟机上全新安装了 WSO2 API Manager 2.0.0。我可以很好地登录到我的 carbon 控制台并访问发布者根目录。
当我尝试登录我的发布者控制台 (https://{my_ip}:9443/publisher) 时,我收到以下错误Error! Transport level information does not match with SOAP Message namespace URI。
我在谷歌云虚拟机上全新安装了 WSO2 API Manager 2.0.0。我可以很好地登录到我的 carbon 控制台并访问发布者根目录。
当我尝试登录我的发布者控制台 (https://{my_ip}:9443/publisher) 时,我收到以下错误Error! Transport level information does not match with SOAP Message namespace URI。
我有同样的问题。也必须禁用 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>