IISにWCFサンプルを展開するために、これに従おうとしています tutorial 。私はそれを動かすことができません。これはホストされたサイトですが、サーバーへのIISマネージャーアクセス権があります。ただし、チュートリアルのステップ2では、「このアプリケーションディレクトリに物理的に配置されている新しいIISアプリケーションを作成する」ことはできません。メニュー項目、コンテキストメニュー項目、または新しいアプリケーションを作成しないものが見つからないようです。私はどこでも狂ったように右クリックしてきましたが、それでも新しいアプリを作成する方法を理解できません。それがおそらく根本的な問題だと思いますが、実際には問題ではない場合に備えて、他のいくつかのこと(以下で説明)を試しました。これは、私の言葉が正義を果たさない場合に備えて、IISマネージャーに表示されるものの写真です。
ここにアプリケーションを追加しないhttp://www.freeimagehosting.net/uploads/d6edbaaf3c.png
これは http://test.com.cws1.my-hosting-panel.com/IISHostedCalcService/Service.svc で「デプロイ」されます。エラーは次のように述べています。
The type 'Microsoft.ServiceModel.Samples.CalculatorService',
provided as the Service attribute value in the ServiceHost directive,
or provided in the configuration element
system.serviceModel/serviceHostingEnvironment/serviceActivations
could not be found.
また、IISHostedCalcServiceを指す仮想ディレクトリ(IISHostedCalc)をdotnetpanelに作成しようとしました。 http://test.com.cws1.my-hosting-panel.com/IISHostedCalc/Service.svc に移動すると、別のエラーが発生します。
This collection already contains an address with scheme http.
There can be at most one address per scheme in this collection.
興味深いことに、[アプリケーションの表示]をクリックすると、仮想ディレクトリがアプリケーションのように見えます(下の画像を参照)...ただし、上記のエラーメッセージに従って、機能しません。
これはアプリですか?http://www.freeimagehosting.net/uploads/f3230be046.png
チュートリアルによると、コンパイルは含まれていませんでした。 IISHostedCalcServiceフォルダー内に次のようにファイルをサーバーにドロップしました。
service.svc
Web.config
<dir: App_Code>
Service.cs
service.svcに含まれるもの:
<%@ServiceHost language=c# Debug="true" Service="Microsoft.ServiceModel.Samples.CalculatorService"%>
(引用符がないと少し奇妙に見えるので、c#属性を引用符で囲んでみましたが、違いはありませんでした)
Web.configに含まれるもの:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="Microsoft.ServiceModel.Samples.CalculatorService">
<!-- This endpoint is exposed at the base address provided by Host: http://localhost/servicemodelsamples/service.svc -->
<endpoint address=""
binding="wsHttpBinding"
contract="Microsoft.ServiceModel.Samples.ICalculator" />
<!-- The mex endpoint is explosed at http://localhost/servicemodelsamples/service.svc/mex -->
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
</system.serviceModel>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Service.csに含まれるもの:
using System;
using System.ServiceModel;
namespace Microsoft.ServiceModel.Samples
{
[ServiceContract]
public interface ICalculator
{
[OperationContract]
double Add(double n1, double n2);
[OperationContract]
double Subtract(double n1, double n2);
[OperationContract]
double Multiply(double n1, double n2);
[OperationContract]
double Divide(double n1, double n2);
}
public class CalculatorService : ICalculator
{
public double Add(double n1, double n2)
{
return n1 + n2;
}
public double Subtract(double n1, double n2)
{
return n1 - n2;
}
public double Multiply(double n1, double n2)
{
return n1 * n2;
}
public double Divide(double n1, double n2)
{
return n1 / n2;
}
}
}
まあ、これはうまくいったようです。 IIS Managerに「アプリケーションの作成」アイテムがまだ見つかりません。その部分はちょっとイライラしますが、とにかく機能しているように見えてうれしいです。
Wwwrootの下に物理ディレクトリIISHostedCalcServiceを作成しました。それはいくつかの混乱を引き起こしていました。 http://test.com.cws1.my-hosting-panel.com/IISHostedCalcService/Service.svc はほぼ機能していましたが、機能しないはずです。 IISHostedCalcServiceをwwwrootの外に移動しましたが、サービスにアクセスできる場所は http://test.com.cws1.my-hosting-panel.com/IISHostedCalc/Service.svc のみです。
次に、 http://test.com.cws1.my-hosting-panel.com/IISHostedCalc/Service.svc にアクセスすると、「このコレクションにはすでにスキームhttpのアドレスが含まれています。
このコレクションのスキームごとに最大で1つのアドレスが存在する可能性があります。 "エラー。その解決策は、system.serviceModelのすぐ下のweb.configファイルに次を追加することです。
<serviceHostingEnvironment>
<baseAddressPrefixFilters>
<add prefix="http://test.com.cws1.my-hosting-panel.com"/>
</baseAddressPrefixFilters>
</serviceHostingEnvironment>
その後、アクセス中に新しいエラーが発生しました http://test.com.cws1.my-hosting-panel.com/IISHostedCalc/Service.svc : "契約名IMetadataExchangeがで見つかりませんでしたサービスCalculatorServiceによって実装されたコントラクトのリスト」。その解決策は、web.configファイルを次のように変更することです(つまり、behaviorsセクションとbehaviorConfiguration = "SimpleServiceBehavior"をservice要素に追加します)。
<configuration>
<system.serviceModel>
<serviceHostingEnvironment>
<baseAddressPrefixFilters>
<add prefix="http://test.com.cws1.my-hosting-panel.com"/>
</baseAddressPrefixFilters>
</serviceHostingEnvironment>
<services>
<service name="Microsoft.ServiceModel.Samples.CalculatorService" behaviorConfiguration="SimpleServiceBehavior">
...
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="SimpleServiceBehavior">
<serviceMetadata httpGetEnabled="True" policyVersion="Policy15" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
最後に、ステップ5cでsvcutilを http://test.com.cws1.my-hosting-panel.com/IISHostedCalc/service.svc?wsdl にポイントすることで、クライアントプロキシを作成できました。 http://msdn.Microsoft.com/en-us/library/ms733133.aspx のチュートリアル。ただし、クライアントを実行すると、「発信者はサービスによって認証されていません」というエラーが発生しました。これに対する解決策は最も簡単でした。サービスのweb.configとクライアントのweb.configでbinding = "wsHttpBinding"をbinding = "basicHttpBinding"に変更するだけです(またはサービスのweb.configを変更した後にsvcutilを再実行します)。
Web.configは次のようになりました。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<serviceHostingEnvironment>
<baseAddressPrefixFilters>
<add prefix="http://test.com.cws1.my-hosting-panel.com"/>
</baseAddressPrefixFilters>
</serviceHostingEnvironment>
<services>
<service name="Microsoft.ServiceModel.Samples.CalculatorService" behaviorConfiguration="SimpleServiceBehavior">
<!-- This endpoint is exposed at the base address provided by Host: http://localhost/servicemodelsamples/service.svc -->
<endpoint address=""
binding="basicHttpBinding"
contract="Microsoft.ServiceModel.Samples.ICalculator" />
<!-- The mex endpoint is explosed at http://localhost/servicemodelsamples/service.svc/mex -->
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="SimpleServiceBehavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true" policyVersion="Policy15" />
<!-- 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>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
新しいアプリケーションを作成するには、[デフォルトのWebサイト]ノードを右クリックします。コンテキストメニューから[アプリケーションの追加]を選択します。
この問題が発生しました。
解決
ワーキング...
同じエラーが発生しました。問題は、サービスがコンパイルするために必要なアセンブリがサーバー上にないことだけでした。
ここで説明されていることはすべて私には必要ありませんでした。
エラーが何であるかを調べるには、service.svcファイルとservice.svc.csファイルをApp_Codeディレクトリに移動してみてください。そうすれば、実際のエラーに関連するエラーメッセージが表示されます。
私の場合、いくつかのアセンブリをデプロイするのを忘れたために欠落していた名前空間。不足しているアセンブリをアップロードし、サービスを正しく実行してから、サービスファイルが属していた場所に戻しました。