MetadataExchangeClient.cs 4.4 KB

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