アプリ内からセルフホストのWCFサービスを作成することを検討しています。Microsoftサイトhttp://msdn.microsoft.com/en-us/library/ms731758(v=vs.100).aspxの例に従おうとしていますが、問題が発生しています。
プログラムを実行すると、svcutil.exeを実行してクライアントクラスを生成できるというWebページに移動できます。または、チュートリアルでエラーが発生したと表示されるWCFテストクライアントに移動すると、
Service metadata may not be accessible. Make sure your service is running and exposing metadata.
svcutil.exeから、次のエラーが発生します。
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>svcutil http://localhost:
6525/hello
Microsoft (R) Service Model Metadata Tool
[Microsoft (R) Windows (R) Communication Foundation, Version 4.0.30319.1]
Copyright (c) Microsoft Corporation. All rights reserved.
Attempting to download metadata from 'http://localhost:6525/hello' using WS-Meta
data Exchange or DISCO.
Generating files...
Warning: No code was generated.
If you were trying to generate a client, this could be because the metadata docu
ments did not contain any valid contracts or services
or because all contracts/services were discovered to exist in /reference assembl
ies. Verify that you passed all the metadata documents to the tool.
Warning: If you would like to generate data contracts from schemas make sure to
use the /dataContractOnly option.
以下は私のWCFアプリのコードです
public interface IHelloWorldService
{
[OperationContract]
string SayHello(string firstName, string lastName);
}
static void Main(string[] args)
{
Uri baseAddress = new Uri("http://localhost:6525/hello");
using (ServiceHost host = new ServiceHost(typeof(HelloWorldService), baseAddress))
{
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
host.Description.Behaviors.Add(smb);
host.Open();
Console.WriteLine("The service is ready at: {0}", baseAddress);
Console.WriteLine("Press <Enter> to stop the service");
Console.ReadLine();
host.Close();
}
}
public class HelloWorldService : IHelloWorldService
{
public string SayHello(string firstName, string lastName)
{
return string.Format("Hello {0} {1}", firstName, lastName);
}
}
あなたが提供できるどんな助けにも感謝します