Conflicting Web.config between web site and web service

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I have a web service which is a subfolder of my web site. Each with their
own web.config.

I added a httpHandlers element to my web.config for my web site and now the
web service comes up with an error:
Parser Error Message: File or assembly name LspWs, or one of its
dependencies, was not found.

This is the namespace for the httpHandler in the web site.
 
Fixed it.

I added a location element with the path set to the file used in the
httpHandler and now it works again.
 
Back
Top