Fancybox works fine for static files supplied but fails to load images being requested from Servlet in form:
<a class="fancybox-thumb" rel="fancybox-thumb" href="http://localhost:8080/getImage?id=6473924464345088">
<img src="http://localhost:8080/getImage?id=6473924464345088">
</a>
This works:
<a class="fancybox-thumb" rel="fancybox-thumb" href="http://localhost:8080/static/404.png">
<img src="/static/404.png" alt=""><
</a>
Also Fancybox creates thumbnails for dynamic images as well but is not able to show in popup-overlay box.
How to fix it?