|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
HttpHandler Problem in ASP .NET 2.0I'm implementing a soapreceiver class in a web site. The required httpHandler tag was also added in the web.config as below. <httpHandlers> <add verb="*" path="Receiver.ashx" type="namespace.class, myassembly"/> </httpHandlers> Unfortunately, when i run the application from .NET IDE 2.0, I'm getting the following error with list of directories. Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'myassembly' or one of its dependencies. The system cannot find the file specified. >From this report, I understood that it's basically looking for myassembly.dll or myassmbly.exe, for the given namespace.class. ThoughI compile and build the application, it's not creating the dll under the bin folder. The bin folder has someother 3rd party components which are required for further development The above scenario was with FileSystem project. I even tried with Web Site project, but has no improvements. Any help? TIA, |
|||||||||||||||||||||||