**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / XmlReturnReader.cs
blobec7829c5e05f5e99f5d5fe9267f2e8f3f41364aa
1 //
2 // System.Web.Services.Protocols.XmlReturnReader.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.IO;
32 using System.Net;
33 using System.Xml.Serialization;
34 using System.Web.Services;
36 namespace System.Web.Services.Protocols {
37 public class XmlReturnReader : MimeReturnReader {
39 XmlSerializer serializer;
41 #region Constructors
43 public XmlReturnReader ()
47 #endregion // Constructors
49 #region Methods
51 public override object GetInitializer (LogicalMethodInfo methodInfo)
53 LogicalTypeInfo sti = TypeStubManager.GetLogicalTypeInfo (methodInfo.DeclaringType);
54 object[] ats = methodInfo.ReturnTypeCustomAttributeProvider.GetCustomAttributes (typeof(XmlRootAttribute), true);
55 XmlRootAttribute root = ats.Length > 0 ? ats[0] as XmlRootAttribute : null;
56 return new XmlSerializer (methodInfo.ReturnType, null, null, root, sti.GetWebServiceLiteralNamespace (sti.WebServiceNamespace));
59 public override object[] GetInitializers (LogicalMethodInfo[] methodInfos)
61 XmlReflectionImporter importer = new XmlReflectionImporter ();
62 XmlMapping[] sers = new XmlMapping [methodInfos.Length];
63 for (int n=0; n<sers.Length; n++)
65 LogicalMethodInfo metinfo = methodInfos[n];
66 if (metinfo.IsVoid)
67 sers[n] = null;
68 else
70 LogicalTypeInfo sti = TypeStubManager.GetLogicalTypeInfo (metinfo.DeclaringType);
71 object[] ats = methodInfos[n].ReturnTypeCustomAttributeProvider.GetCustomAttributes (typeof(XmlRootAttribute), true);
72 XmlRootAttribute root = ats.Length > 0 ? ats[0] as XmlRootAttribute : null;
73 sers[n] = importer.ImportTypeMapping (methodInfos[n].ReturnType, root, sti.GetWebServiceLiteralNamespace (sti.WebServiceNamespace));
76 return XmlSerializer.FromMappings (sers);
79 public override void Initialize (object o)
81 serializer = (XmlSerializer)o;
84 public override object Read (WebResponse response, Stream responseStream)
86 object result = null;
87 if (serializer != null)
89 if (response.ContentType.IndexOf ("text/xml") == -1)
90 throw new InvalidOperationException ("Result was not XML");
92 result = serializer.Deserialize (responseStream);
94 responseStream.Close ();
95 return result;
98 #endregion // Methods