i have to create a program to login on facebook using example
http://code.google.com/p/facebook-java-api/wiki/Examples
but when i run project then i get my doFilter method does not call after complete init method
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
init()will be called on server’s startup. ThedoFilter()will only be called when a HTTP request has been fired which matches theurl-patternof the Filter as definied inweb.xml.The easiest way to fire a HTTP request is using a webbrowser. For example Firefox. Enter the desired URL matching the Filter’s
url-patternin the address bar.