我是一个新手,用XML学习编程......我创建了一个上传xml文件的函数...上传xml(这是一个带有用户数据的简单问答数据)和验证函数抛出异常......
e.Message ="' id'元素无效 - 值' 43516'是 根据其数据类型无效 ' http://www.w3.org/2001/XMLSchema:short' - 字符串' 43516'不是一个 有效的Int16值。"
这是我的功能
[WebMethod]
public static bool CheckFile(string filename)
{
surgeProtection = true;
bool returnval = false;
String xsdPath = "";
//Read the path to upload on the web server
string Uploadpath = ConfigurationManager.AppSettings["UploadPath"];
xsdPath = Uploadpath + "\\" + "survey.xsd";
////Validate the uploaded files on the web server
XmlSchemaSet schemas = new XmlSchemaSet(); //intialize schema class
using (FileStream schemastream = File.OpenRead(xsdPath)) //xsd file load
{
schemas.Add(XmlSchema.Read(schemastream, new ValidationEventHandler(OnValidate)));
//create event for schema
}
schemas.Compile();
String xmlPath = filename;
xmlPath = Uploadpath + "\\" + filename;
XmlDocument doc = new XmlDocument();
byte[] mybyte = Dashboard.Model.Surveys.SurveyService.GetImageFromDB(filename);
string xml = Encoding.UTF8.GetString(mybyte);
doc.LoadXml(xml);
doc.Schemas = schemas; // take schema
doc.Validate(OnValidate); // validate schema
returnval = surgeProtection;
return returnval;
}
This is my validation Function
public static void OnValidate(object sender, ValidationEventArgs e)
{
switch (e.Severity)
{
case XmlSeverityType.Error:
surgeProtection = false;
sw.WriteLine("Error: " + e.Message);
}
}
this is my xml
<?xml version="1.0" encoding="utf-8"?>
<survey>
<title>xxxxxxxxxx</title>
<questions>
<question>
<description>TestDescription</description>
<type>grid</type>
<id>43516</id>
<options>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</options>
<sub-question description="-" id="43516_01">
<response>
<answer user="xxxx@xxx.com">7</answer>
</response>
</sub-question>
</question>
..and so on questions
</questions>
<users>
<user iRecipientId="" sEmail="xxxx" city="xx" country="xx" responseDate="xxx"/>
..and so on
</users>
</survey>
这是我在DB中的表格设计
ID int Unchecked
ImageName varchar(200) Unchecked
Image varbinary(MAX) Unchecked
XML非常大......但是我刚刚展示了基本格式......我已经明白ptoblem是在列43516 abd suqestion ...
我需要分配哪种数据类型以及我需要更改数据类型的位置??我是否需要在数据库表中进行更改?在SQL数据类型是int或bigint ...不短... long ..do我需要更改为bigint? 任何建议都会有帮助
答案 0 :(得分:1)
检查架构中定义的ID。我想它会定义为short,你需要将其更改为int。或者使用短距离内的id值。
请参阅http://msdn.microsoft.com/en-us/library/aa719879(v=vs.71).aspx
答案 1 :(得分:1)
当我将Visual Studio 2005项目升级到VS2010时,我收到了这些警告。
警告1“IsAppSettingsProperty”属性无效 - 根据数据类型“http://www.w3.org/2001/XMLSchema:boolean”,值“False”无效 - 字符串“False”不是有效的布尔值。
当我按照上面列出的URL查看XMLSxhema时,我发现了True | False区分大小写。我用所有小写字母替换了那些警告位置布尔值假。警告都消失了。