0

WCFライブラリを含むWebアプリケーションがあります。Webアプリはポート64697で実行され、WCFはポート50128で実行されます。VS2010を介して実行してテストすると、localhost:50128/eshop.svcに移動してsvcページを表示できます。プロジェクトをIIS開発サーバーに公開するには何をする必要がありますか?IISは、テストサービスを配置し、wsdlにアクセスできるため、WCFを実行するように設定されています。wcfライブラリにeshopServive.svcがあります。ライブラリ名は「company.EShop.WCF」です。

ありがとう

Web構成スニペット

<services>
      <!-- Note: the service name must match the configuration name for the service implementation. -->
      <service name="company.eShop.Wcf.eShopWCFService"
               behaviorConfiguration="MyServiceTypeBehaviors" >
        <endpoint address="" binding="basicHttpBinding"
                  contract="Nad.CheckoutVendor.Interfaces.ICheckoutVendorService">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
      </service>
   </services>
 <bindings>
     <basicHttpBinding>
       <binding name="BasicHttpBinding_ICheckoutVendorService" 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>
4

1 に答える 1

0

私は通常、サービスを DLL にコンパイルしてから、サーバー上で GAC します。IIS の下の .svc ファイルが、次のように GAC 化された DLL を参照していることを確認してください。

<%@ Assembly Name="DLLName, Version=1.1.0.0, Culture=neutral, PublicKeyToken=YOURKEY" %>
<%@ ServiceHost Service="DLLNAME.CLASSNAME" %>
于 2012-09-11T18:02:23.633 に答える