Integrating crystal reports with vaadin

There were mailnly 2 questions:

  1. How can we integrate crystal reports with our vaadin application ?

  2. We are adding a .jsp file and we running jsp file but MyVaadinUI class is running automatically instead of jsp. How can we run that jsp ?

I assume your *.jsp is used to display a report generated by Crystal. I also assume you are hosting this .jsp somewhere in your environment - then it should be easy:

BrowserFrame browser = new BrowserFrame(“Browser”, new ExternalResource(“http://pathToYourJsp/”)); browser.setWidth(“600px”); browser.setHeight(“400px”); layout.addComponent(browser);

*Code taken from
Book of Vaadin 7