| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- //
- // System.Web.Services.Protocols.DiscoveryClientProtocol.cs
- //
- // Author:
- // Dave Bettin ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) Dave Bettin, 2002
- //
- using System.Collections;
- using System.IO;
- using System.Web.Services.Protocols;
- using System.Web.Services.Description;
- using System.Xml;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- using System.Net;
- namespace System.Web.Services.Discovery {
- public class DiscoveryClientProtocol : HttpWebClientProtocol {
- #region Fields
- private IList additionalInformation;
- private DiscoveryClientDocumentCollection documents = new DiscoveryClientDocumentCollection();
- private DiscoveryExceptionDictionary errors = new DiscoveryExceptionDictionary();
- private DiscoveryClientReferenceCollection references = new DiscoveryClientReferenceCollection();
- #endregion // Fields
- #region Constructors
- public DiscoveryClientProtocol ()
- {
- }
-
- #endregion // Constructors
- #region Properties
- public IList AdditionalInformation {
- get { return additionalInformation; }
- }
-
- public DiscoveryClientDocumentCollection Documents {
- get { return documents; }
- }
-
- public DiscoveryExceptionDictionary Errors {
- get { return errors; }
- }
- public DiscoveryClientReferenceCollection References {
- get { return references; }
- }
-
- #endregion // Properties
- #region Methods
- public DiscoveryDocument Discover (string url)
- {
- Stream stream = Download (ref url);
- XmlTextReader reader = new XmlTextReader (stream);
- if (!DiscoveryDocument.CanRead (reader))
- throw new InvalidOperationException ("The url '" + url + "' does not point to a valid discovery document");
-
- DiscoveryDocument doc = DiscoveryDocument.Read (reader);
- reader.Close ();
- documents.Add (url, doc);
-
- foreach (DiscoveryReference re in doc.References)
- {
- re.ClientProtocol = this;
- references.Add (re);
- }
-
- return doc;
- }
- public DiscoveryDocument DiscoverAny (string url)
- {
- Stream stream = Download (ref url);
- XmlTextReader reader = new XmlTextReader (stream);
- reader.MoveToContent ();
- DiscoveryDocument doc;
- DiscoveryReference refe = null;
-
- if (DiscoveryDocument.CanRead (reader))
- {
- doc = DiscoveryDocument.Read (reader);
- documents.Add (url, doc);
- refe = new DiscoveryDocumentReference ();
- foreach (DiscoveryReference re in doc.References)
- {
- re.ClientProtocol = this;
- references.Add (re.Url, re);
- }
- }
- else if (ServiceDescription.CanRead (reader))
- {
- ServiceDescription wsdl = ServiceDescription.Read (reader);
- documents.Add (url, wsdl);
- doc = new DiscoveryDocument ();
- refe = new ContractReference ();
- doc.References.Add (refe);
- }
- else
- {
- XmlSchema schema = XmlSchema.Read (reader, null);
- documents.Add (url, schema);
- doc = new DiscoveryDocument ();
- refe = new SchemaReference ();
- doc.References.Add (refe);
- }
-
- refe.ClientProtocol = this;
- refe.Url = url;
- references.Add (url, refe);
-
- reader.Close ();
- return doc;
- }
-
- public Stream Download (ref string url)
- {
- string contentType = null;
- return Download (ref url, ref contentType);
- }
-
- public Stream Download (ref string url, ref string contentType)
- {
- WebRequest request = GetWebRequest (new Uri(url));
- WebResponse resp = request.GetResponse ();
- contentType = resp.ContentType;
- return resp.GetResponseStream ();
- }
-
- public DiscoveryClientResultCollection ReadAll (string topLevelFilename)
- {
- StreamReader sr = new StreamReader (topLevelFilename);
- XmlSerializer ser = new XmlSerializer (typeof (DiscoveryClientResultsFile));
- DiscoveryClientResultsFile resfile = (DiscoveryClientResultsFile) ser.Deserialize (sr);
- sr.Close ();
-
- foreach (DiscoveryClientResult dcr in resfile.Results)
- {
- Type type = Type.GetType (dcr.ReferenceTypeName);
- DiscoveryReference dr = (DiscoveryReference) Activator.CreateInstance (type);
- dr.Url = dcr.Url;
- FileStream fs = new FileStream (dcr.Filename, FileMode.Open, FileAccess.Read);
- Documents.Add (dr.Url, dr.ReadDocument (fs));
- fs.Close ();
- References.Add (dr.Url, dr);
- }
- return resfile.Results;
- }
- public void ResolveAll ()
- {
- ArrayList list = new ArrayList (References.Values);
- foreach (DiscoveryReference re in list)
- {
- if (re is DiscoveryDocumentReference)
- ((DiscoveryDocumentReference)re).ResolveAll ();
- else
- re.Resolve ();
- }
- }
-
- public void ResolveOneLevel ()
- {
- ArrayList list = new ArrayList (References.Values);
- foreach (DiscoveryReference re in list)
- re.Resolve ();
- }
-
- public DiscoveryClientResultCollection WriteAll (string directory, string topLevelFilename)
- {
- DiscoveryClientResultsFile resfile = new DiscoveryClientResultsFile();
-
- foreach (DiscoveryReference re in References.Values)
- {
- object doc = Documents [re.Url];
- if (doc == null) continue;
-
- resfile.Results.Add (new DiscoveryClientResult (re.GetType(), re.Url, re.DefaultFilename));
-
- string filepath = Path.Combine (directory, re.DefaultFilename);
- FileStream fs = new FileStream (filepath, FileMode.Create, FileAccess.Write);
- re.WriteDocument (doc, fs);
- fs.Close ();
- }
-
- StreamWriter sw = new StreamWriter (Path.Combine (directory, topLevelFilename));
- XmlSerializer ser = new XmlSerializer (typeof (DiscoveryClientResultsFile));
- ser.Serialize (sw, resfile);
- sw.Close ();
- return resfile.Results;
- }
-
- #endregion // Methods
-
- #region Classes
-
- public sealed class DiscoveryClientResultsFile {
-
- #region Fields
-
- private DiscoveryClientResultCollection results;
- #endregion // Fields
- #region Contructors
-
- public DiscoveryClientResultsFile ()
- {
- results = new DiscoveryClientResultCollection ();
- }
-
- #endregion // Constructors
-
- #region Properties
-
- public DiscoveryClientResultCollection Results {
- get { return results; }
- }
-
- #endregion // Properties
- }
- #endregion // Classes
- }
- }
|