Is it possible to fully forward a request from a servlet to an external resource?
For example:
A web has a video component with src = ip-server/servletName
The servlet catches the GET request for that component, validates some cookie parameters and after that processes directly (forward, not redirect) an external resource present in http://localhost/resource.mp4
Is that possible using Java + Servlets or I must use other technologies¿?
Thanks!