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
com.sun.jersey.config.feature.DisableWADL true
to web.xml
This prevents classes that use reflection, which is not allowed on app engine.