I'm creating a web user interface with GWT, that must "cover" the UI of an existing web platform (I have no control to the original UI, but I can work on the same server). So, I make the request, I got the HTML from the old UI, than I need to parse the HTML and select the informations I need to present in my UI. What is the best way to do this last step (parsing and extracting informations from HTML)?
|
|
Don't do the parsing of the HTML on the GWT client. You need to set up a proxy servlet. The proxy servlet accesses the legacy (old) HTML application on behalf of the GWT client. Proxy also acts as main servlet for GWT client. Proces flow
What is the proxy servlet? The proxy servlet I described is not the usual http proxy. Rather, it is a normal servlet providing REST or RPC service. I call it a proxy because it is a proxy to allow http clients to access legacy/middleware apps that are not http enabled. The servlet accepts http requests and transforms them into invocation of legacy application. Frequently, it might involve writing terminal emulator because many legacy apps were written in old VMS, IBM VM, or even Sperry/Unisys where the apps only accepts terminal entry. There are terminal emulation libraries for that. Fortunately, your service does not need to perform terminal emu, but simply translates one http request into another. What I recommend is using JAX-RS (RestEasy or Jersey) for the REST listener servlet which listens any http requests that corresponds to the service interface you declare. The listener will spontaneously trigger the interface's implementation. The interface impl will contain the routines to trigger/invoke/dial-into the legacy app and transform its data as a response. For JAX-RS with GWT, read http://h2g2java.blessedgeek.com/2011/12/gwt-with-jax-rs-aka-rpcrest-part-1.html. |
||||
|
|
You can use https://developers.google.com/web-toolkit/doc/latest/DevGuideUiDom Not sure if I really understood your question. |
|||
|
|