Skip to content Skip to sidebar Skip to footer

Web Service In Java Using Iis

Hi i am developing android application. I am using web service to communicate with the server. I am creating web service in java. I want to deploy it on IIS(Internet Information Sy

Solution 1:

You need to host Java web service on something allowing that - for example Tomcat. Than you need to configure IIS to forward requests for Java services to Tomcat - check Apache Tomcat Connector.

Generally IIS is extensible through something called ISAPI extension - it is native library forwarding processing of specific request to correct component. There are ISAPI extensions to process request in Java but they most often only forward request to another server - I believe that is what Tomcat Connector does.

Post a Comment for "Web Service In Java Using Iis"