D
dwa
I can't get the httpHandlers settings to work my
web.config file
My httpHanders section in web.config looks like this:
<httpHandlers>
<add verb="*" path="*.spud"
type="async.AsyncHttpHandler,async">
</httpHandlers>
In my service's code-behind, I've got an AsynhHttpHandler
implementation of
IHttpAsyncHandler:
namespace async
{
public class AsyncHttpHandler : IHttpAsynclHandler(...)
....
};
According to the documentation, specifying path
= "*.spud" should cause
asynch.AsyncHttpHandler to be processed whenever any page
with a .spud
extension is requested, but I can't get this to work.
What might I be doing wrong?
-- da
web.config file
My httpHanders section in web.config looks like this:
<httpHandlers>
<add verb="*" path="*.spud"
type="async.AsyncHttpHandler,async">
</httpHandlers>
In my service's code-behind, I've got an AsynhHttpHandler
implementation of
IHttpAsyncHandler:
namespace async
{
public class AsyncHttpHandler : IHttpAsynclHandler(...)
....
};
According to the documentation, specifying path
= "*.spud" should cause
asynch.AsyncHttpHandler to be processed whenever any page
with a .spud
extension is requested, but I can't get this to work.
What might I be doing wrong?
-- da