0

is it possible to deploy a gwt site which calles a java servlet on an IIS?

Regards, Stefan

Stefan
  • 14,826
  • 17
  • 80
  • 143

2 Answers2

1

This thread discusses servlet engines for IIS.

Community
  • 1
  • 1
Shahid
  • 995
  • 3
  • 11
  • 24
0

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.

Swapnil
  • 897
  • 7
  • 15