Thank you for making the PWM project available, it's a great service to offer our students.
I have one issue that I'm having difficulty resolving.
Any time a "continue" button is clicked a redirect to : public/command fails with error 5015
(in chrome you don't see the error, just a blank page)
This action corresponds to an error in the error log : 5015 ERROR_UNKNOWN (unknown command sent to CommandServlet: )
The service is successfully updating security questions to a remoteDB and successfully updating passwords to our AD.
Our environment is a Windows 2012 server, and I've had this issue occur in both tomcat 7 and 8.5
Any advice would be much appreciated.
Just pinging this up to keep it alive, we're still seeing this issue. Thanks.
Thanks for the reply Jason, I do not have anything set under forwardUrl or logoutURL
Running into the same issue here. Was working fine a while ago. The only cause I could think of is that I changed my pwm tomcat context from webapps/pwm to webapps/ROOT. The forwardUrl and logoutUrl are set to the defaults.
That's interesting, I too changed my webapps/pwm to webapps/ROOT, however I have another instance of PWM running with a different domain and it does not encounter the issue and it too is under webapps/ROOT. I think the major difference between my two instances is the one that doesn't have the issue only connects to one DC, I don't think that really matters though.
event.AuditService, audit event:
and perpetratorID for the recently authenticated user, and the guid's don't match.
looking further still, the trace log shows not paramaters for GET requests :
TRACE, http.PwmRequest, {10481,testuser} GET request for: /public/command (no params)
After Herberts comments I decided to just reinstall and this time did not change the directory to ROOT, I left it pwm, and everything is fine now (no more 5015 error).
In my windows ROOT directory I added an index.jsp with a redirect :
response.sendRedirect("https://password.mydomain.org/pwm");
everything is working great now, for anyone else who is troubleshooting this ia appears my issue arose from renaming pwm.war to root.war, and at some point GET wasn't working and the user authentication failed, and a force logout occurred.
Good luck, thanks to all who posted.
More of a workaround than a solution sadly. Seems a bit silly to have to include /pwm directory in your address, when you already know that you're accessing password management by using the sub-domain "password" (or "pwm" in my case).
Still looking for a solution to this issue.
Are there any fixes out there?