It's pretty easy to make web-services answer with JSONP callbacks if you're using Jersey. Adding single filter you can make all web-services' resources add callbacks to their response.
Here is the code of such filter. Note that it's Jersey-based.
package net.sukharevd.ws.rs;
import javax.ws ...