Let me give more information on the background first.
I have a .net web service application developed in .net 3.5, and i deploy to window 2012, with iis 8.5
The application path point to a unc path which mount to a network share by nfsv3
When i open the url to localhost and point to the asmx file, it is fine that the page show the service description
However when i try to call one of the web service for example login, it then prompt an error 500.19, and with error code 0x8007010b, which means the directory path is invalid. The strange thing is that the web.config path show on the error is pointing inside the asmx file, which point to the service.asmx\login\web.config and i think that is why iis cannot find it, as the folder path does not exists
Detailed Error Information:
Module IIS Web Core
Notification BeginRequest
Handler Not yet determined
Error Code 0x8007010b
Config Error Cannot read configuration file
Config File \\?\UNC\klhkpc3hac004\dmsdoc\xxxservice.asmx\Login\web.config
Requested URL http://localhost:80/xxxservice.asmx/Login
Physical Path \\klhkpc3hac004\dmsdoc\xxxservice.asmx\Login
Logon Method Not yet determined
Logon User Not yet determined
Is there any way i can force the iis not find that web.config?
thanks for any help