0

我正在尝试从 XML 文件中读取,当我尝试使用它加载它时,XmlDocument我收到此错误:

由于内部错误,服务器无法处理请求。有关错误的更多信息,请在服务器上打开IncludeExceptionDetailInFaults(从配置行为ServiceBehaviorAttribute或从<serviceDebug>配置行为)以将异常信息发送回客户端,或者根据 Microsoft .NET Framework SDK 文档打开跟踪并检查服务器跟踪日志。

这是导致此问题的代码:

public string calorieCount(int choice)
  {
    string calCount = "250";
    XmlDocument doc = new XmlDocument();

    //ERROR WITH LINE BELOW. no error without.
    doc.LoadXml("XMLFile1.xml");

    //XmlElement root = doc.DocumentElement;
    //XmlNode node = doc.SelectSingleNode("/menu/item[@name='Burger']/calories");
    //string checker = node.Value;
    //MessageBox.Show(checker);
    return calCount;
}

似乎无论我在那里放置什么路径都行不通。有任何想法吗?

编辑 我已经完成了以下操作并且错误仍然存​​在,我已经更新了服务参考,它仍然给了我这个错误。

<behavior name="debug">
      <serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>

<services>
 <service name="calorieCount" behaviorConfiguration="debug"></service>
</services>
4

1 回答 1

3

就像错误消息所说的那样做。

添加到您的服务 -

 <services>
      <service name="YourServiceName" behaviorConfiguration="debug">
  </services>

添加到您的配置文件

<serviceBehaviors>
  <behavior name="debug">
    <serviceDebug includeExceptionDetailInFaults="true" />
  </behavior>
</serviceBehaviors>

编辑

  1. 如果这不能解决您的问题,请打开跟踪。
  2. 确保服务名称具有全名,例如:Namespace.ClassName
  3. 确保合同具有全名,例如:Namespace.ClassName
于 2013-10-23T00:05:30.820 回答