Skip to content

Commit

Permalink
Authentication exceptions for web service and rest service
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Jul 22, 2014
1 parent eb79d5c commit cf5d8ca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gui/admin-gui/src/main/webapp/WEB-INF/ctx-web-security.xml
Expand Up @@ -26,7 +26,12 @@ http://www.springframework.org/schema/security/spring-security-3.1.xsd">

<global-method-security secured-annotations="enabled"/>

<!-- Web services have their own authentication and authorization using CXF interceptors. -->
<http pattern="/model/**" security="none"/>
<http pattern="/ws/**" security="none"/>

<!-- REST services have their own authentication and authorization. -->
<http pattern="/rest/**" security="none"/>

<http pattern="/js/**" security="none"/>
<http pattern="/css/**" security="none"/>
Expand Down

0 comments on commit cf5d8ca

Please sign in to comment.