Hi List, I would like to implement support for IIS 6. At the moment we have an IIS ISAPI module which is a ISAPI Filter + ISAPI Extension. This is not a good design for IIS 6 since it doesn't encourage the use of filters. So I thought of writing a ISAPI Extension for IIS 6 which will connect IIS 6 and Axis2/C.
Here is the rough outline of what this new extension will do. Intercept all the incoming requests. Check weather they are for Axis2/C or not. If the request is for Axis2/C process the request (this can be done using the existing code in IIS module) Write the response back (Here we can improve the existing code, since IIS 6 supports more features) This design was not possible for IIS 5 since it doesn't support Extensions which can intercept all the incoming messages. Regards, Supun.