Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已重命名 WCF 服务,并且在我的测试/开发环境中一切正常。但是,在我的生产环境(即 IIS)上无法访问该服务。尝试访问服务时,客户端大致收到以下错误:
请求失败并出现错误:找不到类型 Old_Service_Name.Some_Type。
换句话说,应该通知 IIS 服务的重命名。我如何告诉 IIS,最好使用 IIS 管理器,该服务有一个新名称?
在 service.svc 文件中,更改标记的Service属性ServiceHost,使其适合您的新服务名称。即,替换Old_Service_Name.Some_Type为New_Service_Name.Some_Type。
Service
ServiceHost
Old_Service_Name.Some_Type
New_Service_Name.Some_Type