You can get integrated pipeline work if you add the following to the web.config file.
<system.webServer>
<modules>
<addname="UrlRewriter"preCondition="managedHandler"type=" DotShoppingCart.OpenSource.HttpModules.UrlRewriterHttpModule, DotShoppingCart.OpenSource.HttpModules.UrlRewriter" />
</modules>
<handlers>
<addname="DbFileHandler"verb="*"path="dbfile.axd"preCondition="integratedMode"type=" DotShoppingCart.OpenSource.HttpHandlers.DbFileHttpHandler, DotShoppingCart.OpenSource.HttpHandlers.DbFileHttpHandler"/>
<addname="DbImageHandler"verb="*"path="dbimage.axd"preCondition="integratedMode"type=" DotShoppingCart.OpenSource.HttpHandlers.DbImageHttpHandler, DotShoppingCart.OpenSource.HttpHandlers.DbImageHttpHandler "/>
<addname="DbDyImageHandler"verb="*"path="dyimage.axd"preCondition="integratedMode"type=" DotShoppingCart.OpenSource.HttpHandlers.DyImageHttpHandler, DotShoppingCart.OpenSource.HttpHandlers.DyImageHttpHandler "/>
</handlers>
</system.webServer>
DotShoppingCart Staff
|