| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //
- // System.Web.Services.Description.ServiceDescriptionReflector.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- using System.Xml.Serialization;
- using System.Xml;
- using System.Xml.Schema;
- using System.Web.Services.Protocols;
- using System.Web.Services.Configuration;
- namespace System.Web.Services.Description {
- public class ServiceDescriptionReflector
- {
- ServiceDescriptionCollection serviceDescriptions;
- Types types;
- #region Constructors
-
- public ServiceDescriptionReflector ()
- {
- types = new Types ();
- serviceDescriptions = new ServiceDescriptionCollection ();
- }
-
- #endregion // Constructors
- #region Properties
- public XmlSchemas Schemas {
- get { return types.Schemas; }
- }
- public ServiceDescriptionCollection ServiceDescriptions {
- get { return serviceDescriptions; }
- }
- #endregion // Properties
- #region Methods
- public void Reflect (Type type, string url)
- {
- XmlSchemaExporter schemaExporter = new XmlSchemaExporter (Schemas);
- SoapSchemaExporter soapSchemaExporter = new SoapSchemaExporter (Schemas);
-
- new SoapProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);
-
- if (WSConfig.IsSupported (WSProtocol.HttpGet))
- new HttpGetProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);
-
- if (WSConfig.IsSupported (WSProtocol.HttpPost))
- new HttpPostProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);
-
- if (serviceDescriptions.Count == 1)
- serviceDescriptions[0].Types = types;
- else
- {
- foreach (ServiceDescription d in serviceDescriptions)
- {
- d.Types = new Types();
- for (int n=0; n<types.Schemas.Count; n++)
- ProtocolReflector.AddImport (d, types.Schemas[n].TargetNamespace, GetSchemaUrl (url, n));
- }
- }
- }
-
- string GetSchemaUrl (string baseUrl, int id)
- {
- return baseUrl + "?schema=" + id;
- }
-
-
- #endregion
- }
- }
|