0

ローカルホストで実行すると、正常に実行されるWCFがあります。しかし、特定のドメインアドレス(www.esimsol.com)に対して実行すると問題が発生します。誰かが私にそれを設定する方法を教えてくれます( "http://www.esimsol.com/evalservicesite/eval.svc")。私のローカルホスト設定ファイルは:

<?xml version="1.0" encoding="utf-8" ?>
<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 behaviorConfiguration="EvalServiceLibrary.Service1Behavior"
        name="EvalServiceLibrary.EvalService">
        <endpoint address="" binding="wsHttpBinding" contract="EvalServiceLibrary.IEvalService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8081/EvalServiceLibrary/EvalService/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="EvalServiceLibrary.Service1Behavior">
          <!-- 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>

注:特別なベースアドレス

4

2 に答える 2

0

削除する

   <identity>
      <dns value="localhost" />
   </identity>

   <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8081/EvalServiceLibrary/EvalService/" />
      </baseAddresses>
    </host>
于 2012-06-04T05:19:05.700 に答える
0

ソリューションをhttp://www.esimsol.comという名前で iis サーバーに公開する必要があります。公開したら、次のアドレスでサービスを実行してみてください:http://www.esimsol.com/evalservicesite/eval.svc を使用して、ベース アドレスを次のように変更します。

localhost または Web サイト名http://www.esimsol.comのいずれかのサーバーに公開した後、loacalhost サーバー 8081 を使用することはできません。

于 2012-06-04T05:08:05.873 に答える