Skip to Content
0
Former Member
Oct 27, 2005 at 03:19 PM

Add HTTP Handler with SAP ?

38 Views

In our ASP.NET web application, we currently use HTTPHandlers to manage dynamic images generation.

The mapping between an HTTP handler and a URL name (or extension) is declaratively set in the application's web.config file in a dedicated section :

<system.web>
  <httpHandlers>
    <add verb="GET" path="cachedimageservice.axd" type="MyComponent.CachedImageService"/>
  </httpHandlers>
</system.web>

In this case, i can use the web.config file deployed on the portal (e.g <i>C:\Program Files\SAP\Portal Runtime for Microsoft .NET\Server00\PortalApps\PortalApplication1\Web.config</i>) but i'm afraid it is not recommended.

Is there another way to manage such config settings ?

Thank you for your help.