У меня есть служба WCF, настроенная на хосте следующим образом:
Uri baseAddress = new Uri("http://10.94.8.27:8989/MyServiceSoap");
// Create the ServiceHost.
using (ServiceHost host = new ServiceHost(typeof(MyServiceSoapService), baseAddress))
{
// Enable metadata publishing.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
host.Description.Behaviors.Add(smb);
Когда хост находится на компьютере с Win7, я могу добавить ссылку на него от клиента на том же компьютере.или другой компьютер с Win7, но не на компьютере с Win Server 2008.
Когда хост находится на компьютере с Win Server 2008 - происходит то же самое (работает для клиентов на компьютерах с Win7, не работает для клиентов на компьютерах с Win Server 2008)).
Это означает, что я не могу добавить ссылку на службу к этой службе независимо от того, где находится хост, когда клиент находится на компьютере с Win 2008.Что-нибудь, что я могу изменить в конфигурации системы / службы / хоста?
Заранее спасибо!
Конфигурация приложения в библиотеке служб:
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service name="MyServiceLib.Service1">
<host>
<baseAddresses>
<add baseAddress = "http://localhost:8732/Design_Time_Addresses/MyServiceLib/Service1/" />
</baseAddresses>
</host>
<!-- Service Endpoints -->
<!-- Unless fully qualified, address is relative to base address supplied above -->
<endpoint address="soap" binding="basicHttpBinding" contract="MyServiceLib.IService1"/>
<endpoint address ="" binding="wsHttpBinding" contract="MyServiceLib.IService1">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<!-- Metadata Endpoints -->
<!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. -->
<!-- This endpoint does not use a secure binding and should be secured or removed before deployment -->
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="True"/>
<!-- To receive exception details in faults for debugging purposes,
set the value below to true. Set to false before deployment
to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>