I installed the Broadleaf framework. I am able to see the home page of shop. But when I go to admin page I am not able to access it. I know it is accessed by https. I set the setting for my chrome browser but am still not able to access it using the https. I know i have to deactivate the security settings from applicationcontest security xml file. I do not know from where i have to change the security file admin/site and what i have to change? I do some google search about spring security and found that
<sec:intercept-url> is related to https security therefore I removed the followding code from the admin sercurity xml
Code: Select all
<sec:intercept-url pattern="/" requires-channel="any" />
<sec:intercept-url pattern="/**" requires-channel="any" />
Code: Select all
<sec:filter-security-metadata-source>
<sec:intercept-url pattern="/admin.html*" access="PERMISSION_OTHER_DEFAULT" />
<sec:intercept-url pattern="/dynamic.entity.service" access="PERMISSION_OTHER_DEFAULT" />
</sec:filter-security-metadata-source>
Please suggest me how I deactivate the spring security ?
Thanks
Sunil