This might be a newbie question since I haven't worked much with
eventlisteners, so bare with me... :)

My problem is that I can't get HttpSessionBindingListener to work. All I
have written in my servlet is;

public class SomeServlet implements HttpSessionBindingListener {

[....some servlet code...]

public boolean valueUnbound(HttpSessionBindingEvent event){
  System.out.println("This object was unbound");
  return true;
}
public boolean valueBound(HttpSessionBindingEvent event){
 System.out.println("This object was bound to a session");
  return true;
}

[...some more servlet code ..]

The compiler complains about not getting an identifier.

Is the problem;
...that I have not read my api docs well enough
...that I'm experienced woodoo magic
...something else

???

Thanks

/mads

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to