• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

WARNING: Unexpected error forwarding to login page

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to use FORM based authentication but I am getting this error in the tomcat console...


When I try to goto my web page (http://localhost:8080/E3/common/CustomerInq/index.faces) I get a blank screen.
However, if after getting the blank screen I goto the login page (http://localhost:8080/E3/login2.jsp) and type in a correct login page then I will get redirected to the CustomerInq/index.faces page correctly.
[ June 25, 2004: Message edited by: David Wilson ]
 
David Wilson
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is a snippit of my web.xml...


and here is the login from the Orielly JSF book that I am trying to use as a starting point...


Any ideas are will be greatly appreciated.

-David
 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi David ,

i just bumped into this problem. well in my case it was easy to fix
i was using <login-page>/login.html</login-page>(wrong) instead of <form-login-page>/login.html</form-login-page> form some reason the parser didnt threw me an error
This error occurs when the container is unbale to pick up the login page at runtime. I would check that i have the right mapping in web.xml and the page is there in the right directory ect.
 
reply
    Bookmark Topic Watch Topic
  • New Topic