Search code examples
javagwtsmartgwt

SmartGWT/GWT: Show a PDF on client side


I have an already generated PDF on my server-side,I would like some help on showing the pdf when clicking a button on the client side.

How should I create the conextion with the server and client using the shared?

Thank you for your help.


Solution

  • Create a servlet and call it from client side on clicking a button.

    String servletName = GWT.getModuleBaseURL().replace("/" + GWT.getModuleName(), "")
                         + "pdf_download_servlet";
    Window.open(servletName, "", "");
    

    For a servlet code please have a look at need a servlet to download a file.