I want to show pdf files in my webpage and I am using GWT.
It is possible to write this simples code:
Frame frame = new Frame();
frame.setUrl("http://127.0.0.1:8888/documents/file.pdf");
However, this way I believe is not possible to manage authorization because everyone having that URL can see the pdf document.
What are your recommendations to deal with this authorization issue using files with GWT?