My configuration is the following.
<.............................
<mule-ss:security-manager>
<mule-ss:delegate-security-provider name="memory-provider" delegate-ref="authenticationManager" />
</mule-ss:security-manager>
..................................>
<.....................................
<spring:beans>
<ss:authentication-manager alias="authenticationManager" />
<ss:authentication-provider>
<ss:user-service id="userService">
<ss:user name="ross" password="ross" authorities="ROLE_ADMIN" />
<ss:user name="anon" password="anon" authorities="ROLE_ANON" />
</ss:user-service>
</ss:authentication-provider>
<spring:import resource="classpath:SpringHibernaterContextConfig.xml"/>
</spring:beans>
.............................>
<.....................
<http:inbound-endpoint address="
http://localhost:8888/services/identityIdentify" synchronous="true">
<mule-ss:http-security-filter realm="mule"/>
</http:inbound-endpoint>
...................>
If no the scecurity configuration, my service component is accessible. but now it is not accessible. I am confused how to access the component.
================================================================================
my test page is the admin.jsp
<form method="POST" action="<%=request.getContextPath()%>/services/identityIdentify">
<tr>
<td>username</td><td><input type="text" value="ross" name="name"></td>
</tr>
<tr>
<td>password</td><td><input type="password" value="ross" name="password"></td>
</tr>
<tr><input type="submit" value="提交"></tr>
</form>
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email