こんにちは私は自分の問題を解決しようとしていますが、何もできませんでした。サービスが利用できません503 + http://localhost/ProductsService/Service.svcにあるHTTPサービスがビジー状態です
問題は、それは私がVS 2010からの私のコードを実行すると、それは私
にHTTPサービスを提供します
503サービスを使用できませんエラーが発生します
http://localhost/productservice/service.svc
ときタイプ私のブラウザでは、このアドレスでありますhttp://localhost/ProductsService/Service.svcにありますがビジー状態です。 例外。
ProductServiceは、ApplicationPoolIdentityを持つASP.NET v4.0統合アプリケーションプールで実行されています。
私は何をする必要があるのか分かりません。
(Windows 7のホーム& IIS7)
basicHttpBindingが
を使用しているサーバー側の設定がある
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="AdventureWorksEntities" connectionString="metadata=res://*/ProductsModel.csdl|res://*/ProductsModel.ssdl|res://*/ProductsModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=PINCHY\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- 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>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
クライアントのapp.configは、すべてのヘルプは
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IProductsService" 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>
<client>
<endpoint address="http://localhost:80/ProductsService/Service.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IProductsService"
contract="ProductsService.IProductsService" name="BasicHttpBinding_IProductsService" />
</client>
</system.serviceModel>
</configuration>
ますです大いに感謝されます Tha nks
はあなたが上に行くために私たちに多くを与える必要があります!あなたの設定は何ですか?どのバインディングを使用していますか?私たちにサーバー側の設定を見せてください! (タグの中の何でも) –
私は設定のおかげを追加しました – Pinchy
あなたの設定は正しいように見えます。あなたのサービスをデバッグしようとしましたか? Btw。 Windows 7 HomeにはIIS7がありますか? –