I just joined a GWT project.
Our goal now is to create more pages with login.
I would like to add these pages as simple HTML and use the existing GWT backend.
Is this possible?
When I look at the network in the current login page, I see GWT uses a long string concatenated with vertical bars, something like :
7|0|11|http://15.165.128.219:8099/welcome/|B080515AD1EBC13C065F38E72385F941|com.company.AdminService|login|com.company.LoginDetails/94248548|java.util.HashSet/3273092938|java.lang.String/2004016611|myusername|mypassword|1|2|3|4|1|5|5|P__________|6|1|7|8|6|1|7|9|10|11|
And I know JQuery Ajax
$.ajax( { username : "username" , password : "password" }
The GWT response looks like:
//OK['C',[],0,7]
How do I go about bridging the two technologies? What is the correct way to dispatch JQuery Ajax requests and reply using GWT?