我有一个 Web 方法,当我抛出soapexception 或faultexception 时,它显示为web.config 中带有自定义错误=on 的文本,或者带有自定义错误=off 的文本和行。现在有错误的 XML 格式。webmethod 的严格标准字符串输出以格式化的 XML 格式返回。
[WebMethod(Description = "Downloads file from SP and saves it to DB")]
public string SaveFileFromSPToDb(string siteGuid, string webGuid, string listGuid, string itemId, string fileUrl)
{
throw new SoapException("exception test", SoapException.ServerFaultCode);
}
可能是什么原因以及如何解决?