चूंकि डेव ने मुझसे .NET में किसी ऑब्जेक्ट को क्रमांकित करने के लिए सभी xsi और xsd नामस्थानों को स्वीकार करने के लिए अपना उत्तर दोहराने के लिए कहा था , इसलिए मैंने इस पोस्ट को अपडेट किया है और यहां दिए गए लिंक से अपना उत्तर दोहराया है। इस उत्तर में प्रयुक्त उदाहरण वही उदाहरण है जिसका उपयोग अन्य प्रश्न के लिए किया जाता है। इस प्रकार नकल की जाती है, शब्दशः।
Microsoft के प्रलेखन और कई समाधानों को ऑनलाइन पढ़ने के बाद, मैंने इस समस्या का हल खोज लिया है। यह बिल्ट-इन XmlSerializer
और कस्टम XML क्रमांकन दोनों के माध्यम से काम करता है IXmlSerialiazble
।
सफेद करने के लिए, मैं उसी MyTypeWithNamespaces
XML नमूने का उपयोग करूंगा जिसका उपयोग इस प्रश्न के उत्तर में किया गया है।
[XmlRoot("MyTypeWithNamespaces", Namespace="urn:Abracadabra", IsNullable=false)]
public class MyTypeWithNamespaces
{
// As noted below, per Microsoft's documentation, if the class exposes a public
// member of type XmlSerializerNamespaces decorated with the
// XmlNamespacesDeclarationAttribute, then the XmlSerializer will utilize those
// namespaces during serialization.
public MyTypeWithNamespaces( )
{
this._namespaces = new XmlSerializerNamespaces(new XmlQualifiedName[] {
// Don't do this!! Microsoft's documentation explicitly says it's not supported.
// It doesn't throw any exceptions, but in my testing, it didn't always work.
// new XmlQualifiedName(string.Empty, string.Empty), // And don't do this:
// new XmlQualifiedName("", "")
// DO THIS:
new XmlQualifiedName(string.Empty, "urn:Abracadabra") // Default Namespace
// Add any other namespaces, with prefixes, here.
});
}
// If you have other constructors, make sure to call the default constructor.
public MyTypeWithNamespaces(string label, int epoch) : this( )
{
this._label = label;
this._epoch = epoch;
}
// An element with a declared namespace different than the namespace
// of the enclosing type.
[XmlElement(Namespace="urn:Whoohoo")]
public string Label
{
get { return this._label; }
set { this._label = value; }
}
private string _label;
// An element whose tag will be the same name as the property name.
// Also, this element will inherit the namespace of the enclosing type.
public int Epoch
{
get { return this._epoch; }
set { this._epoch = value; }
}
private int _epoch;
// Per Microsoft's documentation, you can add some public member that
// returns a XmlSerializerNamespaces object. They use a public field,
// but that's sloppy. So I'll use a private backed-field with a public
// getter property. Also, per the documentation, for this to work with
// the XmlSerializer, decorate it with the XmlNamespaceDeclarations
// attribute.
[XmlNamespaceDeclarations]
public XmlSerializerNamespaces Namespaces
{
get { return this._namespaces; }
}
private XmlSerializerNamespaces _namespaces;
}
यह सब इस वर्ग के लिए है। अब, कुछ ने XmlSerializerNamespaces
अपनी कक्षाओं के भीतर कहीं एक वस्तु होने पर आपत्ति जताई ; लेकिन जैसा कि आप देख सकते हैं, मैंने इसे डिफ़ॉल्ट रूप से डिफ़ॉल्ट निर्माणकर्ता में बंद कर दिया और नामस्थानों को वापस करने के लिए सार्वजनिक संपत्ति को उजागर किया।
अब, जब कक्षा को क्रमबद्ध करने का समय आएगा, तो आप निम्नलिखित कोड का उपयोग करेंगे:
MyTypeWithNamespaces myType = new MyTypeWithNamespaces("myLabel", 42);
/******
OK, I just figured I could do this to make the code shorter, so I commented out the
below and replaced it with what follows:
// You have to use this constructor in order for the root element to have the right namespaces.
// If you need to do custom serialization of inner objects, you can use a shortened constructor.
XmlSerializer xs = new XmlSerializer(typeof(MyTypeWithNamespaces), new XmlAttributeOverrides(),
new Type[]{}, new XmlRootAttribute("MyTypeWithNamespaces"), "urn:Abracadabra");
******/
XmlSerializer xs = new XmlSerializer(typeof(MyTypeWithNamespaces),
new XmlRootAttribute("MyTypeWithNamespaces") { Namespace="urn:Abracadabra" });
// I'll use a MemoryStream as my backing store.
MemoryStream ms = new MemoryStream();
// This is extra! If you want to change the settings for the XmlSerializer, you have to create
// a separate XmlWriterSettings object and use the XmlTextWriter.Create(...) factory method.
// So, in this case, I want to omit the XML declaration.
XmlWriterSettings xws = new XmlWriterSettings();
xws.OmitXmlDeclaration = true;
xws.Encoding = Encoding.UTF8; // This is probably the default
// You could use the XmlWriterSetting to set indenting and new line options, but the
// XmlTextWriter class has a much easier method to accomplish that.
// The factory method returns a XmlWriter, not a XmlTextWriter, so cast it.
XmlTextWriter xtw = (XmlTextWriter)XmlTextWriter.Create(ms, xws);
// Then we can set our indenting options (this is, of course, optional).
xtw.Formatting = Formatting.Indented;
// Now serialize our object.
xs.Serialize(xtw, myType, myType.Namespaces);
एक बार जब आप ऐसा कर लेते हैं, तो आपको निम्न आउटपुट प्राप्त करने चाहिए:
<MyTypeWithNamespaces>
<Label xmlns="urn:Whoohoo">myLabel</Label>
<Epoch>42</Epoch>
</MyTypeWithNamespaces>
मैंने हाल ही में एक प्रोजेक्ट में इस पद्धति का सफलतापूर्वक उपयोग किया है जो कि वेब सेवा कॉल के लिए XML से अनुक्रमित होने वाली कक्षाओं की गहन श्रेणीबद्धता के साथ है। Microsoft का प्रलेखन बहुत स्पष्ट नहीं है कि XmlSerializerNamespaces
आपके द्वारा बनाए जाने के बाद , सार्वजनिक रूप से प्रशंसनीय सदस्य के साथ क्या करना है, और बहुत सारे लोग इसे बेकार मानते हैं। लेकिन उनके दस्तावेज़ीकरण का पालन करके और ऊपर दिखाए गए तरीके से इसका उपयोग करके, आप यह अनुकूलित कर सकते हैं कि बिना असमर्थित व्यवहार का सहारा लिए या कार्यान्वयन करके "अपने स्वयं के" क्रमांकन के बिना XmlSerializer XML को अपनी कक्षाओं के लिए कैसे उत्पन्न करता है IXmlSerializable
।
यह मेरी आशा है कि इस उत्तर को, एक बार और सभी के लिए, मानक xsi
और xsd
नाम स्थान से छुटकारा पाने के लिए कैसे रखा जाएगा XmlSerializer
।
अद्यतन: मैं सिर्फ यह सुनिश्चित करना चाहता हूं कि मैंने सभी नामस्थानों को हटाने के बारे में ओपी के प्रश्न का उत्तर दिया। ऊपर दिया गया मेरा कोड इसके लिए काम करेगा; मुझे आपको बताने दो कि कैसे। अब, ऊपर के उदाहरण में, आप वास्तव में सभी नामस्थानों से छुटकारा नहीं पा सकते हैं (क्योंकि उपयोग में दो नामस्थान हैं)। कहीं आपके XML डॉक्यूमेंट में, आपको कुछ ऐसा करने की जरूरत नहीं है xmlns="urn:Abracadabra" xmlns:w="urn:Whoohoo
। यदि उदाहरण में वर्ग एक बड़े दस्तावेज़ का हिस्सा है, तो कहीं एक नामस्थान के ऊपर (या दोनों) Abracadbra
और में से किसी एक के लिए घोषित किया जाना चाहिए Whoohoo
। यदि नहीं, तो किसी एक या दोनों नामस्थानों के तत्व को किसी प्रकार के उपसर्ग के साथ सजाया जाना चाहिए (आपके पास दो डिफ़ॉल्ट नाम स्थान नहीं हो सकते हैं?)। इसलिए, इस उदाहरण के लिए, Abracadabra
डिफ़ॉल्ट नाम स्थान है। मैं अपनी MyTypeWithNamespaces
कक्षा के अंदर एक नामस्थान उपसर्ग जोड़ सकता हूँ Whoohoo
जैसे नामस्थान के लिए :
public MyTypeWithNamespaces
{
this._namespaces = new XmlSerializerNamespaces(new XmlQualifiedName[] {
new XmlQualifiedName(string.Empty, "urn:Abracadabra"), // Default Namespace
new XmlQualifiedName("w", "urn:Whoohoo")
});
}
अब, मेरी कक्षा की परिभाषा में, मैंने संकेत दिया कि <Label/>
तत्व नेमस्पेस में है "urn:Whoohoo"
, इसलिए मुझे आगे कुछ करने की आवश्यकता नहीं है। जब मैं अब अपने उपर्युक्त क्रमांकन कोड का उपयोग करके वर्ग को अनुक्रमित करता हूं, तो यह आउटपुट है:
<MyTypeWithNamespaces xmlns:w="urn:Whoohoo">
<w:Label>myLabel</w:Label>
<Epoch>42</Epoch>
</MyTypeWithNamespaces>
क्योंकि <Label>
बाकी दस्तावेज़ से एक अलग नामस्थान में है, यह किसी न किसी नामस्थान के साथ "सजाया" होना चाहिए। ध्यान दें कि अभी भी नाम xsi
और xsd
स्थान नहीं हैं।
इससे दूसरे प्रश्न के लिए मेरा उत्तर समाप्त हो जाता है। लेकिन मैं यह सुनिश्चित करना चाहता था कि मैं बिना किसी नामस्थान का उपयोग किए ओपी के प्रश्न का उत्तर दूं, क्योंकि मुझे लगता है कि मैंने इसे अभी तक संबोधित नहीं किया है। मान लें कि <Label>
इस मामले में, बाकी दस्तावेज़ों के समान नामस्थान का हिस्सा है urn:Abracadabra
:
<MyTypeWithNamespaces>
<Label>myLabel<Label>
<Epoch>42</Epoch>
</MyTypeWithNamespaces>
आपका निर्माणकर्ता ऐसा प्रतीत होता है जैसे यह मेरे पहले कोड उदाहरण में सार्वजनिक संपत्ति के साथ डिफ़ॉल्ट नाम स्थान को पुनः प्राप्त करने के लिए होगा:
// As noted below, per Microsoft's documentation, if the class exposes a public
// member of type XmlSerializerNamespaces decorated with the
// XmlNamespacesDeclarationAttribute, then the XmlSerializer will utilize those
// namespaces during serialization.
public MyTypeWithNamespaces( )
{
this._namespaces = new XmlSerializerNamespaces(new XmlQualifiedName[] {
new XmlQualifiedName(string.Empty, "urn:Abracadabra") // Default Namespace
});
}
[XmlNamespaceDeclarations]
public XmlSerializerNamespaces Namespaces
{
get { return this._namespaces; }
}
private XmlSerializerNamespaces _namespaces;
फिर, बाद में, आपके कोड में जो MyTypeWithNamespaces
इसे क्रमबद्ध करने के लिए ऑब्जेक्ट का उपयोग करता है, आप इसे ऊपर बताए अनुसार कहेंगे:
MyTypeWithNamespaces myType = new MyTypeWithNamespaces("myLabel", 42);
XmlSerializer xs = new XmlSerializer(typeof(MyTypeWithNamespaces),
new XmlRootAttribute("MyTypeWithNamespaces") { Namespace="urn:Abracadabra" });
...
// Above, you'd setup your XmlTextWriter.
// Now serialize our object.
xs.Serialize(xtw, myType, myType.Namespaces);
और XmlSerializer
आउटपुट में बिना किसी अतिरिक्त नामस्थान के तुरंत ऊपर दिखाए गए एक्सएमएल को वापस थूक देगा:
<MyTypeWithNamespaces>
<Label>myLabel<Label>
<Epoch>42</Epoch>
</MyTypeWithNamespaces>