Безопасный вызов REST на Websphere

Я пытаюсь создать защищенный сервис REST в WebSphere 8.5.0.2. Я хочу защитить с помощью базовой аутентификации. Я изменил свой web.xml и попытался прочитать автоматически введенный SecurityContext. Я получаю автоматически внедренный объект, но различные операции не выполняются, например, securityContext.getAuthenticationScheme(); Я также назначил свою роль всем пользователям аутентичного мира.

Я не мог найти ничего в документации Wink тоже. Я делаю что-то не так?

Мой web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>RESTModulation</display-name>
    <!-- Wink SDK servlet configuration. 
        This servlet handles HTTP requests
        of SDK web service on application server.-->

<servlet>
    <description>
    JAX-RS Tools Generated - Do not modify</description>
    <servlet-name>EntryRestServlet</servlet-name>
    <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
    <init-param>
        <param-name>javax.ws.rs.Application</param-name>
        <param-value>com.demo.DemoResourceApplication</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>EntryRestServlet</servlet-name>
    <url-pattern>
    /resources/*</url-pattern>
</servlet-mapping>
<security-constraint id="SecurityConstraint_1">
      <web-resource-collection id="WebResourceCollection_1">
        <web-resource-name>EntryRestServlet</web-resource-name>
        <description>Protection area for Rest Servlet</description>
        <url-pattern>/resources/</url-pattern>
        <http-method>GET</http-method>
        <http-method>POST</http-method>
      </web-resource-collection>
      <auth-constraint id="AuthConstraint_1">
         <description>Role1 for this rest servlet</description>
         <role-name>Role1</role-name>
      </auth-constraint> 
</security-constraint>
<security-role id="SecurityRole_1">
         <description>This is Role1</description>
         <role-name>Role1</role-name>
</security-role>    
<login-config>
      <auth-method>BASIC</auth-method>
      <realm-name>defaultWIMFileBasedRealm</realm-name>
</login-config>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

==========================================================================
Service implementation

@Path("/MyTestService")

public class MyTestService{

    @Context 
    SecurityContext securityContext;

    @GET
    @Path("/getUser1")
    @Produces(MediaType.TEXT_PLAIN)
    public Response doInquiry()throws Exception {
        String jsonData= "{'user':'I am here '}";

        String authnScheme = securityContext.getAuthenticationScheme();
           System.out.println("authnScheme : " + authnScheme);
           // retrieve the name of the Principal that invoked the resource
           String username = securityContext.getUserPrincipal().getName();
           System.out.println("username : " + username);
           // check if the current user is in Role1 
            Boolean isUserInRole = securityContext.isUserInRole("Role1");
            System.out.println("isUserInRole : " + isUserInRole);
return Response.status(Response.Status.OK).entity(jsonData).build();
    }
}

1 ответ

Я не передал правильный пароль от клиента REST. После предоставления правильных учетных данных, он начал работать.

Другие вопросы по тегам