2

我已经定义:

[RdfSerializable]
public class SomeItem
{
   // Unique identificator of the resource
   [ResourceUri]
   public string ID { get; set; }

   [RdfProperty( true )]
   public string SomeData { get; set; }
}

and in some other class: 

[RdfProperty(true)]
public SomeItem[] MyTestProp
{
   get
   {
      return new SomeItem[] { new SomeItem() { ID="1", SomeData="test1" }, new SomeItem() { ID="2", SomeData = "test2" } };
   }
}

当我尝试序列化包含此自定义“MyTestProp”的类时,它给了我该消息:

你调用的对象是空的。

说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

异常详细信息:System.NullReferenceException:对象引用未设置为对象的实例。

我在定义这些属性时是错误的,还是有一种特殊的方法可以将数组定义为自定义类?请注意,例如将数组序列化为字符串并没有让我崩溃,但它正在工作。

全部来源:

using System;
using NC3A.SI.Rowlex;

[assembly: Ontology("ROWLEXtest1", "http://www.test.com/MyOntology")]

namespace ROWLEXtest1
{
   [RdfSerializable( HasResourceUri=false )]
   public class Item
   {
      [RdfProperty(true)]
      public string MyProp;
   }

   [RdfSerializable]
   public class AllItems
   {
      [RdfProperty(true)] public string mTitle;

      private int id = new Random().Next(0, 20);

      [ResourceUri]
      public string ResourceUri 
      {
         get { return "This " + id.ToString(); }
      }

      [RdfProperty(false)]
      public Item[] Items;
   }

   class Program
   {
      static void Main(string[] args)
      {
         var item = new AllItems();
         item.mTitle = "Hello World!";
         item.Items = new Item[] { new Item(){ MyProp = "test1" }, new Item(){ MyProp = "test2" } };

         var doc = Rdfizer.Serialize(item);

         System.Console.Out.Write(doc.ToString());
      }
   }
}

例外是:

System.NullReferenceException 未处理 Message="对象引用未设置为对象的实例。" Source="NC3A.SI.Rowlex" StackTrace:在 NC3A.SI.Rowlex.RdfPropertyAttribute.ExtractRange(MemberInfo memberInfo) 的 NC3A.SI.Rowlex.RdfPropertyAttribute.ExtractRange(MemberInfo memberInfo, Int32& minCardinality, Int32& maxCardinality)。 Rowlex.Rdfizer.AppendProperty(RdfDocument doc, MemberInfo memberInfo, RdfPropertyAttribute attribute, Object item, String resourceUri) at NC3A.SI.Rowlex.Rdfizer.AppendSingleRdfSerializableObject(RdfDocument doc, Object item) at NC3A.SI.Rowlex.Rdfizer.ProcessItem(RdfDocument NC3A.SI.Rowlex.Rdfizer 上的文档、对象项、String[] rangeTypeUris)。

4

1 回答 1

2

你所做的看起来不错,但有一个错误:RdfProperty 声明应该为 MyTestProp 取“false”,因为 MyTestProp 不是数据类型属性而是对象属性(它返回对象而不是文字)。

但是,我不确定这是您问题的根源。即使是这样,您也应该得到一个带有有意义文本的体面的错误消息,而不是愚蠢的 NullReferenceException。因此,我想尝试重现您的错误并在适用时提供修复。能否请您指定

  • 承载 MyTestProp 的类及其装饰,
  • 实例化该类的代码,以及
  • 您用于序列化的代码。
  • 如果您应用了程序集级属性(用于本体 - 命名空间映射),请也指出这一点。

也许您可以考虑将您的代码示例发送给 [rowlex.net 的管理员]。

编辑:我可以重现异常,这是 ROWLEX 中的一个错误。现在可以从ROWLEX站点下载固定的 2.0.1 版本。

于 2009-07-14T06:57:54.490 回答