Click here to Skip to main content
15,914,417 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I have two dll's configured in isapi on IIS,
and conflict occurs with isapi dll,
when ever a request comes for one dll it is always forwarded to other.

Can some one help me out how to make the isapi dll more specific for particular request.
Posted
Updated 26-May-11 8:33am
v2

1 solution

Make sure you have added the application to the right pool, like: ASP.NET v4.0

In IIS7 go to the website and open the handler mappings.
There you'll see a list of handlers.

Like:
PageHandlerFactory-ISAPI-2.0 -- *.aspx
PageHandlerFactory-ISAPI-2.0-64 -- *.aspx
PageHandlerFactory-ISAPI-4.0_32bit -- *.aspx
PageHandlerFactory-ISAPI-4.0_64bit -- *.aspx

Double-click on a line to see the details.

You can remove the duplicate handlers from that list (for a specific website). Notice that this will update the web.config.
 
Share this answer
 
Comments
santoshamrutha 27-May-11 9:30am    
Every thing is configured as you mentioned and the domino server is working properly on it's own port but when we try to get through port 80 , it is not being forwarded to domino by iis.
santoshamrutha 27-May-11 9:40am    
we are not using version Asp.net V4.0 we are using 3.5
so we have only two dll as you mentioned the top two

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900