How Do I Add Support For Plugins To A Web Application In Gwt?
I'm making a note taking application and I want to support plugins so that the user can get extra features by adding plugins from 3rd party developers. The only problem is that I d
Solution 1:
Unfortunately GWT won't help you in plugins - by principle, GWT assume it has all the sources needed by application. So to achieve it, you you need to go down to JSNI to discover and load plugins. Here are more details on that: How to make your GWT application plug-able?
I would also suggest looking into Apache Wave source (former Google Wave), which you also referred in your question. http://incubator.apache.org/wave/
Post a Comment for "How Do I Add Support For Plugins To A Web Application In Gwt?"