MetadataExchangeClient.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. //
  2. // MetadataExchangeClient.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. // Ankit Jain <[email protected]>
  7. //
  8. // Copyright (C) 2005 Novell, Inc. http://www.novell.com
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. using System;
  30. using System.Collections.Generic;
  31. using System.Collections.ObjectModel;
  32. using System.ServiceModel;
  33. using System.ServiceModel.Channels;
  34. using System.ServiceModel.Description;
  35. using System.Web.Services.Description;
  36. using System.Web.Services.Discovery;
  37. using System.Web.Services.Protocols;
  38. using System.Xml;
  39. using System.Xml.Serialization;
  40. using System.IO;
  41. using System.Net;
  42. using System.Text;
  43. using SMBinding = System.ServiceModel.Channels.Binding;
  44. using SMMessage = System.ServiceModel.Channels.Message;
  45. namespace System.ServiceModel.Description
  46. {
  47. [MonoTODO ("MetadataExchangeClientMode is not considered")]
  48. public class MetadataExchangeClient
  49. {
  50. string scheme;
  51. EndpointAddress address;
  52. SMBinding binding;
  53. MetadataExchangeClientMode mode = MetadataExchangeClientMode.MetadataExchange;
  54. // constructors
  55. [MonoTODO ("use empty configuration")]
  56. public MetadataExchangeClient ()
  57. {
  58. }
  59. public MetadataExchangeClient (SMBinding mexBinding)
  60. {
  61. binding = mexBinding;
  62. }
  63. public MetadataExchangeClient (EndpointAddress address)
  64. {
  65. this.address = address;
  66. }
  67. public MetadataExchangeClient (string endpointConfigurationName)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. public MetadataExchangeClient (Uri address, MetadataExchangeClientMode mode)
  72. {
  73. this.address = new EndpointAddress (address.AbsoluteUri);
  74. this.mode = mode;
  75. }
  76. // sync methods
  77. public MetadataSet GetMetadata ()
  78. {
  79. return GetMetadata (address);
  80. }
  81. public MetadataSet GetMetadata (EndpointAddress address)
  82. {
  83. //FIXME: default mode?
  84. return GetMetadataInternal (address, mode);
  85. }
  86. public MetadataSet GetMetadata (Uri address, MetadataExchangeClientMode mode)
  87. {
  88. return GetMetadataInternal (new EndpointAddress (address.AbsoluteUri), mode);
  89. }
  90. internal MetadataSet GetMetadataInternal (EndpointAddress address, MetadataExchangeClientMode mode)
  91. {
  92. if (binding == null)
  93. binding = MetadataExchangeBindings.CreateMexHttpBinding ();
  94. MetadataProxy proxy = new MetadataProxy (binding, address);
  95. proxy.Open ();
  96. SMMessage msg = SMMessage.CreateMessage (
  97. MessageVersion.Soap12WSAddressing10,
  98. "http://schemas.xmlsoap.org/ws/2004/09/transfer/Get");
  99. msg.Headers.ReplyTo = new EndpointAddress (
  100. "http://www.w3.org/2005/08/addressing/anonymous");
  101. //msg.Headers.From = new EndpointAddress ("http://localhost");
  102. msg.Headers.To = address.Uri;
  103. msg.Headers.MessageId = new UniqueId ();
  104. SMMessage ret;
  105. try {
  106. ret = proxy.Get (msg);
  107. } catch (Exception e) {
  108. throw new InvalidOperationException (
  109. "Metadata contains a reference that cannot be resolved : " + address.Uri.AbsoluteUri, e);
  110. }
  111. return MetadataSet.ReadFrom (ret.GetReaderAtBodyContents ());
  112. }
  113. // async methods
  114. Func<Func<MetadataSet>,MetadataSet> getter;
  115. void PrepareGetter ()
  116. {
  117. if (getter == null)
  118. getter = new Func<Func<MetadataSet>,MetadataSet> (GetMetadata);
  119. }
  120. public MetadataSet EndGetMetadata (IAsyncResult result)
  121. {
  122. return getter.EndInvoke (result);
  123. }
  124. MetadataSet GetMetadata (Func<MetadataSet> func)
  125. {
  126. return func ();
  127. }
  128. public IAsyncResult BeginGetMetadata (AsyncCallback callback, object asyncState)
  129. {
  130. PrepareGetter ();
  131. return getter.BeginInvoke (() => GetMetadata (), callback, asyncState);
  132. }
  133. public IAsyncResult BeginGetMetadata (EndpointAddress address, AsyncCallback callback, object asyncState)
  134. {
  135. PrepareGetter ();
  136. return getter.BeginInvoke (() => GetMetadata (address), callback, asyncState);
  137. }
  138. public IAsyncResult BeginGetMetadata (Uri address, MetadataExchangeClientMode mode, AsyncCallback callback, object asyncState)
  139. {
  140. PrepareGetter ();
  141. return getter.BeginInvoke (() => GetMetadata (address, mode), callback, asyncState);
  142. }
  143. }
  144. internal class MetadataProxy : ClientBase<IMetadataExchange>, IMetadataExchange
  145. {
  146. public MetadataProxy (SMBinding binding, EndpointAddress address)
  147. : base (binding, address)
  148. {
  149. }
  150. public SMMessage Get (SMMessage msg)
  151. {
  152. return Channel.Get (msg);
  153. }
  154. public IAsyncResult BeginGet (SMMessage request, AsyncCallback callback , object state)
  155. {
  156. throw new NotImplementedException ();
  157. }
  158. public SMMessage EndGet (IAsyncResult result)
  159. {
  160. throw new NotImplementedException ();
  161. }
  162. }
  163. }