Why download popup window in browser not showing up when using JAX-RS v.s. standard servlet?
- by masato-san
When I try using standard servlet approach, in my browser the popup window shows up asking me whether to open .xls file or save it.
I tried the exactly same code via JAX-RS and the browser popup won't show up somehow. Has anyone encounter this mystery?
Standard servlet that works:
package local.test.servlet;
import java.io.IOException;
import…