[ 
https://issues.apache.org/jira/browse/SLING-2465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13277039#comment-13277039
 ] 

Carl Hall commented on SLING-2465:
----------------------------------

After talking with Justin, we decided to impersonate the session with the new 
user but that breaks down if the impersonated session is closed before the User 
is returned. Taking the conversation to dev@sling to figure this out.
                
> RequestDispatcher throws NullPointer Exception when forwarding to 
> /system/userManager/user.create.html
> ------------------------------------------------------------------------------------------------------
>
>                 Key: SLING-2465
>                 URL: https://issues.apache.org/jira/browse/SLING-2465
>             Project: Sling
>          Issue Type: Bug
>          Components: JCR, Servlets
>    Affects Versions: JCR Jackrabbit User Manager 2.2.0
>         Environment: Xubuntu 
>            Reporter: Chris Papademos
>            Assignee: Carl Hall
>            Priority: Critical
>              Labels: Create, Request, RequestHandler, User, servlet, 
> usermanager
>
> @Component
> @Service(Servlet.class)
> @Properties({
>               @Property(name = "service.description", value = "Creates a new 
> User and sends an Activation Email to the given Address."),
>               @Property(name = "service.vendor", value = "IPVS"),
>               @Property(name = "sling.servlet.methods", value = "POST"),
>               @Property(name = "sling.servlet.paths", value = 
> "/satlab/user/create") })
> public class UserCreateServlet extends SlingAllMethodsServlet {
>       @Override
>       protected void doPost(SlingHttpServletRequest request,
>                       SlingHttpServletResponse response) throws 
> ServletException,
>                       IOException {
>               
>               // Redirect Request to the Sling CreateUserServlet.
>       
>               RequestDispatcher dispatcher = request
>                               
> .getRequestDispatcher("/system/userManager/user.create.html");
>               dispatcher.forward(request, response);
>       }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to