我正在开发将使用多个不同的客户端应用程序使用WCF服务。 为了使一个功能性的工作,服务器需要读取XML文件转换成C#DataContract,然后到有关的客户通过。 据我从MSDN网站了解,这是可能的,但我找不到任何一个完整的例子。 特别是,关于“流”参数的网站谈判,我不完全得到呢。
我的数据合同有一个属性字段是其中一个具有多个简单的属性字段的另一个数据合同的列表。
如
[DataContract]
public class MyClass1 {
[DataMember]
public string name;
[DataMember]
public int age;
}
[DataContract]
public class MyClass2 {
[DataMember]
public List<MyClass1> myClass1List;
}
我的课是这个样子。
下面是一个例子
MyClass1 obj = new MyClass1();
DataContractSerializer dcs = new DataContractSerializer(typeof(MyClass1));
using (Stream stream = new FileStream(@"C:\tmp\file.xml", FileMode.Create, FileAccess.Write))
{
using (XmlDictionaryWriter writer =
XmlDictionaryWriter.CreateTextWriter(stream, Encoding.UTF8))
{
writer.WriteStartDocument();
dcs.WriteObject(writer, obj);
}
}
Books b = new Books();
DataContractSerializer dcs = new DataContractSerializer(typeof(Books));
try
{
Stream fs = new FileStream(@"C:\Users\temelm\Desktop\XmlFile.xml", FileMode.Create, FileAccess.Write);
XmlDictionaryWriter xdw = XmlDictionaryWriter.CreateTextWriter(fs, Encoding.UTF8);
xdw.WriteStartDocument();
dcs.WriteObject(xdw, b);
xdw.Close();
fs.Flush();
fs.Close();
}
catch (Exception e)
{
s += e.Message + "\n";
}
这可能是对你有用。 当你需要的XElement。 例如,当你打算追加节点的XDocument或replece本文件的XElement。
private XElement objectToXElement(SomeContractType obj)
{
DataContractSerializer dcs = new DataContractSerializer(typeof(SomeContractType);
var ms = new MemoryStream();
var xw = XmlWriter.Create(ms);
dcs.WriteObject(xw, obj);
xw.Flush();
xw.Close();
ms.Position = 0;
XElement xe = XElement.Load(ms);
return xe;
}
有解决了一大堆的使用WCF时的问题NetDataContractSerializer。
看到这里MSDN NetDataContractSerializer
它通常用于包装各种物体并且将它传递WCF。
你可以用它来包裹的物体放到byte[]
和运输过来WCF,在服务器端,你可以很容易地反序列化对象,做任何你想要他们。
下面是关于如何正确使用串行讨论: MSDN社会
提供的代码片段也有!