Include remote web page into Servlet response
I need to开发者_如何学C have servlet exposed to the Internet that includes into its response remote web page with images! which hosted only in Intranet, there for in not accessible for outer clients. Is it possible to implement and how?
Thanks
Using HttpURLConnection you write a redirect servlet which redirects the requests to remote server.
Create a HttpURLConnection to the remote pages, get the inputstream from the HttpURLConnection and write it to the client outputstream.
精彩评论