During the development of our GWT application, we will use a third party Java library for interfacing with some hardware. The user will use the interface which will eventually call Method() from the 3rd Party Library API. This will probably work in GWT development mode but it might pose problems when compiling the application for deployment when the Java code is converted into javascript as that library has no javascript support.
I am not exactly sure how we will over come this. But, for now it seems like RPC pattern may help us. Please correct any mistakes I make of my assumed understanding of RPC. The user will perform an action which will send an RPC request to a server containing the 3rd party Java API call which will perform the necessary information and updated the GWT user interface accordingly. My question boils down to this - how can I use a third party library in my GWT app when I dont think it will compile the application into java script.
I feel as if I am not entirely descriptive, but this is a problem that we have not considered and hope that we can somehow resolve this.
Any and all feedback is greatly appreciated!