MetadataExchangeClient.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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]
  48. public class MetadataExchangeClient
  49. {
  50. string scheme;
  51. EndpointAddress address;
  52. SMBinding binding;
  53. public MetadataExchangeClient ()
  54. {
  55. //FIXME: Look for config element, implementing
  56. // IMetadataExchange contract
  57. // Use Channel<IMetadataExchange> .. ?
  58. throw new NotImplementedException ();
  59. }
  60. public MetadataExchangeClient (SMBinding mexBinding)
  61. {
  62. binding = mexBinding;
  63. }
  64. public MetadataExchangeClient (EndpointAddress address)
  65. {
  66. this.address = address;
  67. }
  68. public MetadataExchangeClient (string endpointConfigurationName)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. public MetadataExchangeClient (Uri address, MetadataExchangeClientMode mode)
  73. {
  74. this.address = new EndpointAddress (address.AbsoluteUri);
  75. }
  76. public MetadataSet GetMetadata ()
  77. {
  78. return GetMetadata (address);
  79. }
  80. public MetadataSet GetMetadata (EndpointAddress address)
  81. {
  82. //FIXME: default mode?
  83. return GetMetadataInternal (address, MetadataExchangeClientMode.MetadataExchange);
  84. }
  85. public MetadataSet GetMetadata (Uri address, MetadataExchangeClientMode mode)
  86. {
  87. return GetMetadataInternal (new EndpointAddress (address.AbsoluteUri), mode);
  88. }
  89. MetadataSet GetMetadataInternal (EndpointAddress address, MetadataExchangeClientMode mode)
  90. {
  91. if (binding == null)
  92. binding = MetadataExchangeBindings.CreateMexHttpBinding ();
  93. MetadataProxy proxy = new MetadataProxy (binding, address);
  94. proxy.Open ();
  95. SMMessage msg = SMMessage.CreateMessage (
  96. MessageVersion.Soap12WSAddressing10,
  97. "http://schemas.xmlsoap.org/ws/2004/09/transfer/Get");
  98. msg.Headers.ReplyTo = new EndpointAddress (
  99. "http://www.w3.org/2005/08/addressing/anonymous");
  100. //msg.Headers.From = new EndpointAddress ("http://localhost");
  101. msg.Headers.To = address.Uri;
  102. msg.Headers.MessageId = new UniqueId ();
  103. SMMessage ret;
  104. try {
  105. ret = proxy.Get (msg);
  106. } catch (Exception e) {
  107. throw new InvalidOperationException (
  108. "Metadata contains a reference that cannot be resolved : " + address.Uri.AbsoluteUri, e);
  109. }
  110. return MetadataSet.ReadFrom (ret.GetReaderAtBodyContents ());
  111. }
  112. }
  113. internal class MetadataProxy : ClientBase<IMetadataExchange>, IMetadataExchange
  114. {
  115. public MetadataProxy (SMBinding binding, EndpointAddress address)
  116. : base (binding, address)
  117. {
  118. }
  119. public SMMessage Get (SMMessage msg)
  120. {
  121. return Channel.Get (msg);
  122. }
  123. public IAsyncResult BeginGet (SMMessage request, AsyncCallback callback , object state)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. public SMMessage EndGet (IAsyncResult result)
  128. {
  129. throw new NotImplementedException ();
  130. }
  131. }
  132. }