简体   繁体   中英

WSO2 API Manager 2.0.0 - Error on Publisher Login

I've made a fresh install of WSO2 API Manager 2.0.0 on a google cloud VM. I can login fine into my carbon console and access the publisher root.

When I try to login into my publisher console (https://{my_ip}:9443/publisher) I get the following error Error! Transport level information does not match with SOAP Message namespace URI Error! Transport level information does not match with SOAP Message namespace URI .

I am having the same issue. Had to disable CSRFPreventionConfig, too. Someone should open a ticket in WSO2 Jira.

To disable CSRFPreventionConfig, open carbon.xml ( <wso2am-home>/repository/conf ) and set the boolean value of the Enabled tag to 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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM