Эта ошибка метаданных - это то, что я получаю, когда просматриваю службу в браузере.Я не использую его с клиентом
и Да .. Я добавил <serviceMetadata httpGetEnabled="True"/>
, и у меня определена конечная точка mex
, но она все равно не будет работать ..
Итак, я создал базовый сервис для размещения на IIS7.Свежая установка Windows 7 и VS2010.
Я следовал инструкциям этой страницы к письму:
http://msdn.microsoft.com/en-us/library/ms733766.aspx
Я убежден, что это должно бытькакая-то проблема конфигурации с IIS7, но и не уверен.Вот мои настройки службы:
РЕДАКТИРОВАТЬ:
Я попытался получить доступ к службе с помощью svcutil и получил следующую ошибку:
The remote server returned an error: (415) Cannot process the message because the content type 'application/soap+xml; charset=utf-8' was not the expected type 'text/xml; charset=utf-8'..
также говорится: The HTML document does not contain Web service discovery information.
не уверен, как ее решить, однако ..
.svc файл:
<%@ServiceHost language="C#" Debug="true" Service="DestructionServices.TacticalNukeSVC
"%>
.cs файл (находится в C: \ Development \ HostedDestructionServices \ папка App_Code):
using System;
using System.ServiceModel;
namespace DestructionServices
{
[ServiceContract]
public interface INukeInterface
{
[OperationContract]
string FireMissile();
[OperationContract]
string DirectFire(double x, double y, double z);
[OperationContract]
void EnterCoordinates(double x, double y, double z);
}
public class TacticalNukeSVC : INukeInterface
{
public string FireMissile()
{
return "Boom";
}
public void EnterCoordinates(double x, double y, double z)
{
//bah, who cares about coordinates..
}
public string DirectFire(double x, double y, double z)
{
return "Fired at: " + x + ", " + y + ", " + z;
}
}
}
Web.Config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<services>
<service name="DestructionServices.Destro" behaviorConfiguration="MetadataBehavior">
<endpoint address="" binding="wsHttpBinding" contract="DestructionServices.INukeInterface" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MetadataBehavior">
<serviceDebug includeExceptionDetailInFaults="True" httpHelpPageEnabled="True" />
<serviceMetadata httpGetEnabled="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>