• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Resin 3 Forms Authentication

 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am wanting to start using Resin instead of Tomcat for my personal use and I am having a problem getting Forms authentication to work. Using the code I am posting below, I always get the error.jsp page returned even though I am using the correct username and password and I don't know why. I have tried both the XMLAuthentication and the JDBCAuthentication and both return the error page. The code below is for the XMLAuthentication.
web.xml

resin-web.xml

login.jsp

In my resin-web.xml file I have commented out the JDBCAuthentication part and I am using the <user> tag to specify the user with roles. Any help would be greatly appreciated.
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I figured out that I had to add
<password-digest>none</password-digest>
because if I don't it uses MD5 by default.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic