I'm struggling with GWT in order to make SSO connection when you login a portal site, I want to automatically login into the program I have. but I don't have any idea since GWT is made base on components in java code. so, It doesn't have controllers and no addresses for specific pages. all about things are with event methods.
SSO_index.jsp
<%
response.sendRedirect("/main");
%>
Main.java
onModuleLoad(){
...
LoginServiceManager.get(mainEventBus).openLoginPopUp();
}
LoginServiceManager.java
openLoginPopUp(){
callLoginService(...);
}
(several methods)
for example,
At SSO_index.jsp, How can I call service(Impl) like the class of callLoginService() or LoginServiceManager.openLoginPopUp() routine...
I don't have any information with this. no book, no specialist, no data on google. so, don't be harsh on me. otherwise, I wouldn't have asked this here. I don't know how to approach, access from jsp to java(not original java code but GWT code) methods since I don't have views with html or jsp... something like that.