1

メッセージを受け入れることができるhttp://localhost:6272/Service1.svcでリッスンしているエンドポイントはありませんでした。これは、多くの場合、アドレスまたは SOAP アクションが正しくないことが原因です。詳細については、InnerException (存在する場合) を参照してください。

InnerException リモート サーバーがエラーを返しました: NotFound

私は2つのソリューションプロジェクトを持っています

1. MyApp (Windows アプリケーション)

2. WcfService1 (クラス ライブラリ)

私のWeb.Config

<?xml version="1.0"?>
<configuration>

 <system.web>
      <compilation debug="true" targetFramework="4.0" />
 </system.web>

<system.serviceModel>

<client>
  <endpoint address="http://localhost:6272/Service1.svc" binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_IService1" contract="ServiceReference1.IService1"
    name="BasicHttpBinding_IService1" />
</client>

<behaviors>
  <serviceBehaviors>
    <behavior>
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IService1" closeTimeout="00:10:00"
      openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
      allowCookies="true" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
      maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
      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>

    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>

 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
 </system.webServer>

 </configuration>

私の Service1.svc.cs では、CookiesContainerオブジェクトをclient(MyApp)に返すだけです。

私は何をすべきか?web.configファイルに変更はありますか?

4

1 に答える 1

0

WcfService1 は単なるクラス ライブラリ以上のものである必要があります。何らかの方法でサービスをホストする必要があります。IIS やセルフホスティングの使用など、さまざまなオプションがあります。これは少し時代遅れですが、良い概要を示しています: http://msdn.microsoft.com/en-us/library/bb332338.aspx

于 2012-09-10T07:08:41.020 に答える