WCF - EndpointNotFoundException

У меня есть следующий сценарий: Проект A содержит 2 интерфейса A и B и две конечные точки службы, EndpointA и EndpointB, каждый из которых реализует соответствующий интерфейс. У меня есть проект модульного тестирования, который использует Cassinini для тестирования сервисов. Я использую прокси, сгенерированный с помощью svcutil, для создания клиентских объектов в моем модульном тесте. Вот мой app.config из проекта модульного тестирования:

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="basicHttp" closeTimeout="00:10:00" openTimeout="00:10:00"
      receiveTimeout="00:10:00" sendTimeout="00:10:00" allowCookies="false"
      bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
      maxBufferSize="5242880" maxBufferPoolSize="524288" maxReceivedMessageSize="5242880"
      messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
      useDefaultWebProxy="true">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
        maxBytesPerRead="4096" maxNameTableCharCount="5242880" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
          realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
    <binding name="BasicHttpBinding_IAdministration" closeTimeout="00:01:00"
                        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                        allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                        maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                        messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                        useDefaultWebProxy="true">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
    <binding name="BasicHttpBinding_IRetrieval" closeTimeout="00:01:00"
        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
        allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
        maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
        messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
        useDefaultWebProxy="true">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
    <binding name="BasicHttpBinding_IModification" closeTimeout="00:01:00"
        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
        allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
        maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
        messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
        useDefaultWebProxy="true">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>      
  </basicHttpBinding>
</bindings>
<client>      
  <endpoint address="http://localhost/MyServiceA.svc/MyServiceA"
      binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IRetrieval"
      contract="IRetrieval" name="BasicHttpBinding_IRetrieval" />
  <endpoint address="http://localhost/MyServiceB.svc/MyService"
      binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IModification"
      contract="IModification" name="BasicHttpBinding_IModification" />      
</client>

Когда я звоню в ServiceA, все работает нормально. Однако, когда я звоню в ServiceB, я получаю следующее сообщение об ошибке:

Метод тестирования MyMethod выдал исключение: System.ServiceModel.EndpointNotFoundException: сообщение с To 'http://localhost/MyServiceB.svc/MyServiceB' не может быть обработано в получателе из-за несовпадения AddressFilter в EndpointDispatcher. Убедитесь, что конечные адреса отправителя и получателя совпадают.

Что происходит? Благодарю.

1 ответ

Решение

Cassini почти никогда не слушает порт 80. Вам нужно выяснить, какой порт слушает Cassini, и исправить его (используя свойства проекта /web и изменить значение по умолчанию на фиксированный номер порта) и обновить конечную точку:

 <endpoint address="http://localhost:<PORTNUMBER>/MyServiceB.svc/MyService"
  binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IModification"
  contract="IModification" name="BasicHttpBinding_IModification" />
Другие вопросы по тегам