If that external application produces a HTML page then yes, you could 
display this HTML page in an HTML iframe within a GWT application. 
Otherwise you must rebuild the UI of the external application in your GWT 
app and query the external application for data that you use to fill the UI 
of your GWT app. Querying for data can either happen directly from the GWT 
app using HTTP requests or indirectly by first querying a HTTP server you 
implement which in turn asks your external application somehow to provide 
the data.

While you program in Java when using GWT, at the end you just get a 
JavaScript application. So in GWT you can only do what a Web Browser / 
Node.Js allows you to do. Or put differently: If you can't solve your issue 
using plain JavaScript + HTML then you can't solve it using GWT.

-- J.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to