deploy a GWT site with aRPC servlet on IIS
is it开发者_如何转开发 possible to deploy a gwt site which calles a java servlet on an IIS?
Regards, Stefan
This thread discusses servlet engines for IIS.
You can use the JK ISAPI plugin to redirect servlet requests to tomcat (assuming you are using tomcat). Then on the gwt client side u can use either Requestbuilder or something as simple as Window.Location.replace("/IISUrl")
to send the request to IIS.
精彩评论