提问人:Rafael Falagan 提问时间:6/16/2022 最后编辑:Rafael Falagan 更新时间:6/17/2022 访问量:21
调用 WCF 服务时出现异常错误
Getting Exception error when calling WCF Service
问:
我有一个使用 WCF 服务的网站(客户端)。
这是我使用调试器运行网站时异常错误返回的内容:
ex {"Could not find a part of the path 'E:\\ORG_FILES\\Logs\\P_Log.txt'."} System.Exception {System.ServiceModel.FaultException<System.ServiceModel.ExceptionDetail>}
在 Web 服务中,我没有双 \:
字符串 logPath = @“E:/ORG_FILES/Logs/P_Log.txt”;
答:
0赞
Lan Huang
6/17/2022
#1
此错误可能有两个原因之一:
1.路径不正确。
2.运行应用程序的帐户无权在路径位置创建目录,例如,如果您尝试在共享驱动器上创建目录,但权限不足等。
您可以尝试更改 logPath:
string logPath = @"E:\ORG_FILES\Logs\P_Log.txt";
或
string logPath = "E:\\ORG_FILES\\Logs\\P_Log.txt";
评论