2009-09-03 31 views
6

Tôi có một dịch vụ được xây dựng bằng cách sử dụng Preview 2 của bộ khởi động WCF REST, nhưng tôi đã gặp phải vấn đề với việc truyền dữ liệu theo kiểu XML trong các cuộc gọi. Đây là đối tượng yêu cầu của tôi:Sử dụng CDATA với bộ khởi động REST WCF

[DataContract(Namespace = "")] 
public class ServiceRequest 
{ 
    [DataMember] 
    public string ContentText { get; set; } 
    [DataMember] 
    public string ApiKey { get; set; } 

} 

Mọi thứ đều hoạt động tốt cho đến khi bạn ném '' vào đó. Có một để đóng gói các tài sản ContentText trong một CDATA hoặc một cái gì đó tương tự?

Trả lời

11

Marc Gravell có giải pháp here để tuần tự hóa các phần CDATA.

Tôi đã sao chép mã ở đây vì hậu thế.

Cập nhật: ví dụ trước đã không tạo ra một sơ đồ hợp lệ, XmlSchemaProviderAttribute và phương pháp đi kèm sẽ tạo ra "xs: string" mà việc chuyển đổi [more...]

using System; 
using System.IO; 
using System.Runtime.Serialization; 
using System.Xml; 
using System.Xml.Serialization; 
using System.ComponentModel; 

[XmlSchemaProvider("GenerateSchema")] 
public sealed class CDataWrapper : IXmlSerializable 
{ 
    // implicit to/from string 
    public static implicit operator string(CDataWrapper value) 
    { 
    return value == null ? null : value.Value; 
    } 

    public static implicit operator CDataWrapper(string value) 
    { 
    return value == null ? null : new CDataWrapper { Value = value }; 
    } 

    public System.Xml.Schema.XmlSchema GetSchema() 
    { 
    return null; 
    } 

    // return "xs:string" as the type in scheme generation 
    public static XmlQualifiedName GenerateSchema(XmlSchemaSet xs) 
    { 
     return XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String).QualifiedName; 
    } 

    // "" => <Node/> 
    // "Foo" => <Node><![CDATA[Foo]]></Node> 
    public void WriteXml(XmlWriter writer) 
    { 
    if (!string.IsNullOrEmpty(Value)) 
    { 
     writer.WriteCData(Value); 
    } 
    } 

    // <Node/> => "" 
    // <Node></Node> => "" 
    // <Node>Foo</Node> => "Foo" 
    // <Node><![CDATA[Foo]]></Node> => "Foo" 
    public void ReadXml(XmlReader reader) 
    { 
    if (reader.IsEmptyElement) 
    { 
     Value = ""; 
    } 
    else 
    { 
     reader.Read(); 

     switch (reader.NodeType) 
     { 
     case XmlNodeType.EndElement: 
      Value = ""; // empty after all... 
      break; 
     case XmlNodeType.Text: 
     case XmlNodeType.CDATA: 
      Value = reader.ReadContentAsString(); 
      break; 
     default: 
      throw new InvalidOperationException("Expected text/cdata"); 
     } 
    } 
    } 

    // underlying value 
    public string Value { get; set; } 
    public override string ToString() 
    { 
    return Value; 
    } 
} 

// example usage 
[DataContract(Namespace="http://myobjects/")] 
public sealed class MyType 
{ 
    public string SomeValue { get; set; } 
    [DataMember(Name = "SomeValue", EmitDefaultValue = false)] 
    private CDataWrapper SomeValueCData 
    { 
    get { return SomeValue; } 
    set { SomeValue = value; } 
    } 

    public string EmptyTest { get; set; } 
    [DataMember(Name = "EmptyTest", EmitDefaultValue = false)] 
    private CDataWrapper EmptyTestCData 
    { 
    get { return EmptyTest; } 
    set { EmptyTest = value; } 
    } 

    public string NullTest { get; set; } 
    [DataMember(Name = "NullTest", EmitDefaultValue = false)] 
    private CDataWrapper NullTestCData 
    { 
    get { return NullTest ; } 
    set { NullTest = value; } 
    } 
} 

// test rig 
static class Program 
{ 
    static void Main() 
    { 
    DataContractSerializer dcs = new DataContractSerializer(typeof(MyType)); 

    StringWriter writer = new StringWriter(); 
    using (XmlWriter xw = XmlWriter.Create(writer)) 
    { 
     MyType foo = new MyType 
     { 
     SomeValue = @"&<t\d", 
     NullTest = null, 
     EmptyTest = "" 
     }; 

     ShowObject("Original", foo); 

     dcs.WriteObject(xw, foo); 
     xw.Close(); 
    } 

    string xml = writer.ToString(); 
    ShowObject("Xml", xml); 

    StringReader reader = new StringReader(xml); 
    using (XmlReader xr = XmlReader.Create(reader)) 
    { 
     MyType bar = (MyType) dcs.ReadObject(xr); 
     ShowObject("Recreated", bar); 
    } 
    } 

    static void ShowObject(string caption, object obj) 
    { 
    Console.WriteLine(); 
    Console.WriteLine("** {0} **", caption); 
    Console.WriteLine(); 

    if (obj == null) 
    { 
     Console.WriteLine("(null)"); 
    } 
    else if (obj is string) 
    { 
     Console.WriteLine((string)obj); 
    } 
    else 
    { 
     foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(obj)) 
     { 
     Console.WriteLine("{0}:\t{1}", prop.Name, prop.GetValue(obj) ?? "(null)"); 
     } 
    } 
    } 
} 
3

VB của CDataWrapper trong câu trả lời được chấp nhận:

Imports System 
Imports System.IO 
Imports System.Runtime.Serialization 
Imports System.Xml 
Imports System.Xml.Schema 
Imports System.Xml.Serialization 
Imports System.ComponentModel 

Public Class CDataWrapper 
    Implements IXmlSerializable 

    'underlying value 
    Public Property Value As String 

    'Implicit to/from string 
    Public Shared Widening Operator CType(ByVal value As CDataWrapper) As String 
     If value Is Nothing Then 
      Return Nothing 
     Else 
      Return value.Value 
     End If 
    End Operator 

    Public Shared Widening Operator CType(value As String) As CDataWrapper 
     If value Is Nothing Then 
      Return Nothing 
     Else 
      Return New CDataWrapper() With {.Value = value} 
     End If 
    End Operator 


    Public Function GetSchema() As XmlSchema Implements IXmlSerializable.GetSchema 
     Return Nothing 
    End Function 

    ' <Node/> => "" 
    ' <Node></Node> => "" 
    ' <Node>Foo</Node> => "Foo" 
    ' <Node><![CDATA[Foo]]></Node> => "Foo" 
    Public Sub ReadXml(reader As XmlReader) Implements IXmlSerializable.ReadXml 
     If reader.IsEmptyElement Then 
      Me.Value = "" 
     Else 
      reader.Read() 

      Select Case reader.NodeType 
       Case XmlNodeType.EndElement 
        Me.Value = "" ' empty after all... 
       Case XmlNodeType.Text, XmlNodeType.CDATA 
        Me.Value = reader.ReadContentAsString() 
       Case Else 
        Throw New InvalidOperationException("Expected text/cdata") 
      End Select 
     End If 
    End Sub 

    ' "" => <Node/> 
    ' "Foo" => <Node><![CDATA[Foo]]></Node> 
    Public Sub WriteXml(writer As XmlWriter) Implements IXmlSerializable.WriteXml 
     If Not String.IsNullOrEmpty(Me.Value) Then 
      writer.WriteCData(Me.Value) 
     End If 
    End Sub 

    Public Overrides Function ToString() As String 
     Return Me.Value 
    End Function 
End Class 
+0

Nội dung hay. Cảm ơn Kevin! –

+0

Đoạn mã trên dừng phân tích cú pháp các thuộc tính sau CData. Đây là vấn đề khi bạn mong đợi nhiều hơn một phần tử trong xml. Thêm trình đọc bị thiếu.() Ở cuối thẻ khác trong ReadXML khắc phục sự cố này. – Beejee

3

Mã trên thiếu thực tế là bạn phải vượt qua nội dung sau khi bạn đã đọc. Vì vậy, lớp này như nó đứng sẽ không làm việc với một bộ sưu tập.

Thay đổi thành nội dung sau đây và bây giờ bạn có thể giữ Bộ sưu tập của CDataWrapper.

Value = reader.ReadContentAsString(); 
reader.Read(); 
0

Mặc dù đây là bài đăng cũ hơn ở đây là 2 ¢ của tôi. Tôi đã giải quyết vấn đề này bằng cách xác định thành viên dữ liệu là XmlElement.

[DataMember(Name = "MyCData")] 
     public XmlElement MyCDataField { get; set; } 
Các vấn đề liên quan