Comment #1 on issue 583 by lordkada: com.google.inject.servlet.GuiceFilter cannot be cast to javax.servlet.Filter
http://code.google.com/p/google-guice/issues/detail?id=583

SOLVED: sorry, it was my fault..

I'm using maven and in my pom.xml I missed to add "<scope>provided</scope>" to "servlet-api" dependency:

                <dependency>
                        <groupId>javax.servlet</groupId>
                        <artifactId>servlet-api</artifactId>
                        <version>2.4</version>
                        <scope>provided</scope>
                </dependency>

Now it works... (so you can close this issue!)



--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To post to this group, send email to google-guice-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-guice-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-guice-dev?hl=en.

Reply via email to