Request builder call not returning when using ssl(https)
Posted
by Zeeshan Khan
on Stack Overflow
See other posts from Stack Overflow
or by Zeeshan Khan
Published on 2010-04-20T08:38:22Z
Indexed on
2010/04/20
8:43 UTC
Read the original article
Hit count: 564
Hi , I am using GWT. Currently using gwt-rpc to for login authentication. For only login purpose i want to use ssl(https) and so instead of using gwt-rpc i am trying Request Builder and calling a servlet with https. When in Servlet URL i use protocol as http the request builder works perfectly and response returns to client side(onResponseReceived ). but when i use https in the servlet url then the servlet is gettting called but the response is not returning to the onResponseReceived method of request builder.
my url with http looks like : http://localhost:8888/myproject/myservlet and with https it looks like :https://localhost/myproject/myservlet
Please give any suggestion or is there any other way to do it.and also is it possible to use ssl over gwt-rpc.
© Stack Overflow or respective owner