ほとんどの場合、WCF サービスには、サービス ホストのバインディング、動作、およびエンドポイント要素を定義する構成ファイルがあります。そのため、URL はサービス ベース アドレスと UriTemplate の組み合わせにする必要があります。次の構成ファイルのスニペットは、wcf https レスト サービスの 1 つからの参照サンプルを提供します。
<bindings>
<webHttpBinding>
<binding name="RestBinding">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</webHttpBinding>
…</p>
<behaviors>
<serviceBehaviors>
<behavior name="DefaultServiceBehavior">
<serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" />
<serviceCredentials>
…
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
…</p>
<service name="TestRest">
<endpoint behaviorConfiguration="RestBehavior" binding="webHttpBinding"
bindingConfiguration="RestBinding" name="RestServiceEndpoint"
contract="Test.Rest.Interface" />
<host>
<baseAddresses>
<add baseAddress="http://domain.name.here:18100/" />
</baseAddresses>
</host>
</service>
したがって、URL は次のようになります:
http://domain.name.here:18100/JsonData
よろしく、