I recently added jersey to my app engine project, everything works great on my local machine but when I try to access the page on the deployed site I get errors. I think I migh
You need to add
<init-param> <param-name>com.sun.jersey.config.feature.DisableWADL</param-name> <param-value>true</param-value> </init-param>
to web.xml
This prevents classes that use reflection, which is not allowed on app engine.