Thanks CQ... but that didn't work - is that the asp.net 1.1 or 2 version? This is a 1.1 app.
There's something kind of strange going on here... without your new asmx handler, when i try to view an asmx page, i get this error:
Parser Error Message: File or assembly name Internet2008, or one of its dependencies, was not found.
Source Error:
Line 107: <httpHandlers>
Line 108: <add verb="*" path="*.bcn" type="Internet2008.Beacon.BeaconHandler, Internet2008" />
Line 109: </httpHandlers>
Even though the handler actually works and does its thing when i load a .bcn file.
BUT, when i add your directive, and try to run the same .bcn code as before, i get the following error:
Parser Error Message: File or assembly name System.Web.Services, or one of its dependencies, was not found.
Source Error:
Line 107: <httpHandlers>
Line 108: <add verb="*" path="*.bcn" type="Internet2008.Beacon.BeaconHandler, Internet2008" />
Line 109: <add verb="*" path="*.asmx" type="System.Web.Services.Protocols.WebServiceHandlerFactory, System.Web.Services" />
Line 110: </httpHandlers>
Line 111:
The first part is especially weird.. why would the handler work, but then when its not actually being called, it throws an error?