我正在尝试启动我的第一个WCF服务。
好吧,我想指出我已完全理解WCF架构和支柱(ABC:地址绑定和合同=端点)。此外,我已经理解了WCF哲学的许多元素,所以,我不仅仅是一个新的... ...
然而,除了理论之外,当有人把手放在真实的东西上时,真正的问题就来了......
我有这三个文件:
档案IService1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
/// <summary>
/// This is the interface that specifies contract for the Sevice1 of this service application.
/// In this file the interface is specified in order to set the service operations that can be invoked by requestors.
/// </summary>
namespace EchoWcfLibrary {
/// <summary>
/// The interface specifies for those classes implementing it (services), the operation that the service will expose.
/// </summary>
[ServiceContract]
public interface IService1 {
// This does not use serialization (implicit serialization in considered: base types used).
[OperationContract]
string GetData(int value);
// This uses data contracts and serialization.
[OperationContract]
CompositeType GetDataUsingDataContract(CompositeType composite);
}
/// <summary>
/// The following class defines data contract for those operations managing with non primitive types and, for this reason, needing serialization support (explicit, not implicit)
/// </summary>
[DataContract]
public class CompositeType {
// Members not serialized
bool boolValue = true;
string stringValue = "Hello ";
// Serialized
[DataMember]
public bool BoolValue {
get { return boolValue; }
set { boolValue = value; }
}
// Serialized
[DataMember]
public string StringValue {
get { return stringValue; }
set { stringValue = value; }
}
}
}
档案Service1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
/// <summary>
/// This is the service host implementation. A class implementing the service is specified.
/// </summary>
namespace EchoWcfLibrary {
/// <summary>
/// This class implements the IService1 service.
/// </summary>
public class Service1 : IService1 {
// One operation.
public string GetData(int value) {
return string.Format("You entered: {0}", value);
}
// The other operation.
public CompositeType GetDataUsingDataContract(CompositeType composite) {
if (composite == null) {
throw new ArgumentNullException("composite");
}
if (composite.BoolValue) {
composite.StringValue += "Suffix";
}
return composite;
}
}
}
这些文件放在名为EchoWcfLibrary
主要:Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using EchoWcfLibrary;
namespace WcfServiceApplication {
public static class Program {
static void Main(string[] args) {
// Setting endpoints and setting the service to start properly.
// Base address specified: http://localhost:8080/service1
using (ServiceHost host = new ServiceHost(typeof(Service1), new Uri("http://localhost:8080/service1"))) {
host.AddServiceEndpoint(typeof(IService1), new BasicHttpBinding(), "svc");
host.AddServiceEndpoint(typeof(IService1), new NetTcpBinding(), "net.tcp://localhost:8081/service1/tcpsvc");
host.Open();
System.Threading.Thread.Sleep(1000000);
host.Close();
}
}
}
}
最后一个文件位于名为WcfServiceApplication
的单独项目中
这两个项目存在于同一解决方案中。
WcfServiceApplication
当然有一个指向另一个项目的链接。
我想启动这项服务,正如您所看到的那样,是Visual Studio放在WCF库模板中的服务。
好吧,我试图第一次运行它并且在http命名空间保留方面遇到了一些问题,我使用netsh修复了它并为我的用户和指定的http命名空间添加了显式保留。
但是我遇到的情况如下:WCF主机应用程序是一个非常有用的小应用程序,它显示当前托管的服务。只有一个托管的服务:我的,但是它的状态已经停止,它告诉我,在描述框中,已经定义了NO ENDPOINT !!!
但我在Program.cs
中定义了它们......我不明白......
我做错了什么?
三江源
PS
请注意,即使仅定义host.AddServiceEndpoint(typeof(IService1), new BasicHttpBinding(), "svc")
(没有tcp端点)也会给出相同的结果....
还有一件事:我理解这种构建服务的方法并不是很好......但是,我想先了解如何使用自动生成代码工具,从根本上创建和运行服务,然后,如何使用更高级别的工具...谢谢
答案 0 :(得分:4)
问题似乎是您已经定义了两个端点,'svc'(http)和'net.tcp:// localhost:8081 / service1 / tcpsvc'(tcp),然后尝试使用启动服务主机第三个端点,未在您配置的两个端点中定义。
我建议删除以编程方式创建绑定的代码,将.config文件添加到项目中,然后使用Visual Studio内置的WCF服务配置编辑器(截至2008年起)为您完成繁重的工作