HTTP Proxy Servlet

One thing about writing AJAX calls is that you are limited to calling the same server for security reasons. To work around this issue, I gave this proxy a try and it worked for me and saved me time writing my own. The follow-up questions I have about this proxy implementations are: 1. It’s only […]

Read more "HTTP Proxy Servlet"

Forward vs Redirect

I was using forward in a servlet to forward a request to a JSP and that didn’t display some of the images in a JSP. So, I found this page that shows how to use redirect. I find this a good page that explains the difference between the two approaches.

Read more "Forward vs Redirect"