问:
以下代码在本地运行良好,但是当我尝试使用服务器时,页面挂起(并重定向到登录页面)。
XDocument.Load(targetFileName);
XmlReaderSettings settings = new XmlReaderSettings();
settings.CloseInput = true;
settings.ValidationEventHandler += Handler;
settings.ValidationType = ValidationType.Schema;
settings.Schemas.Add(null, System.Web.HttpContext.Current.Server.MapPath("~/importSchema/IntialSchema.xsd"));
settings.ValidationFlags =
XmlSchemaValidationFlags.ReportValidationWarnings |
XmlSchemaValidationFlags.ProcessIdentityConstraints |
XmlSchemaValidationFlags.ProcessInlineSchema |
XmlSchemaValidationFlags.ProcessSchemaLocation;
using (StreamReader str_reader = new StreamReader(targetFileName))
{
using (XmlReader validatingReader = XmlReader.Create(str_reader, settings))
{
try
{
while (validatingReader.Read())
{
}
}
catch (XmlValidationFailedException ex)
{
Common.ErrMappingForInformix.WriteLog(ex.Message);
this.ShowStatus("error","", 1);
validationFailed = true;
}
}
}
if (validationFailed)
{
return;
}
private static void Handler(object sender, ValidationEventArgs e)
{
if (e.Severity == XmlSeverityType.Error || e.Severity == XmlSeverityType.Warning)
{
string message = String.Format("Line: {0}, Position: {1} \"{2}\"",
e.Exception.LineNumber, e.Exception.LinePosition, e.Exception.Message);
throw new XmlValidationFailedException(message, e.Exception);
}
}
[Serializable()]
public class XmlValidationFailedException : System.Exception
{
public XmlValidationFailedException() : base() { }
public XmlValidationFailedException(string message) : base(message) { }
public XmlValidationFailedException(string message, Exception innerException) : base(message, innerException) { }
protected XmlValidationFailedException(System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) { }
}
我尝试使用无效的xml
文件检查发生了什么。在本地工作正常,但在服务器上我等了很长时间然后重定向到登录页面。我检查IIS
的事件查看器和我的错误文件夹,找不到任何内容。
答案 0 :(得分:3)
在代码中添加日志记录或跟踪。这将帮助您找出问题所在。显然,服务器的设置和开发PC之间存在某种差异,这通常是文件路径,权限或IIS的不同配置。通过使用跟踪,您可以将文件路径,变量值等输出到跟踪文件。
例如:
Trace.Write("Import schema directory: " + Server.MapPath("~/importSchema"));
settings.Schemas.Add(null, System.Web.HttpContext.Current.Server.MapPath("~/importSchema/IntialSchema.xsd"));
祝你好运!