で作成WCF Service Library
しVS2012
、ローカルにロードしましたIIS
。
私のクライアントはWindows-Mobile 6.5
デバイスで、クライアントの構成ファイルはnetcfsvcutil.exe
. デバッグ中はすべてうまくいきましたが、サービスを外部にアップロードすると、外部 URL からファイルが生成されたにもかかわらず例外が発生しIIS
続けます。これは、リモート サーバーにあるファイルです。There was no endpoint listening...
netcfsvcutil.exe
web.config
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="TestBinding" receiveTimeout="00:01:00" sendTimeout="00:01:00">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="MyService.CollectionService">
<endpoint address="" binding="basicHttpBinding" contract="MyService.ICollectionService" bindingConfiguration="TestBinding">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8733/Design_Time_Addresses/MyService/CollectionService/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="True" />
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>
クライアント エンドポイントは次のように生成されます。
public static System.ServiceModel.EndpointAddress EndpointAddress =
new System.ServiceModel.EndpointAddress("http://1.2.3.4/MyService/MyService.CollectionService.svc");
サービスを外部にアップロードしたときに構成を変更していませんIIS
。ある仮想ディレクトリから別の仮想ディレクトリにファイルをコピーして貼り付けただけです。役立つかもしれないことは、タイムアウトなしで例外が発生することです。