HIII 我是WCF的新手,我在Console应用程序中编写了一个代码。 我已经创建了这样的服务
[ServiceContract]
public interface IHelloService
{
[OperationContract]
void SayHello(string msg);
}
并定义函数
public class HelloService: IHelloService
{
public void SayHello(string msg)
{
Console.WriteLine("I rec message : " + msg);
}
}
我正在从主程序文件
开始服务static void Main(string[] args)
{
Console.WriteLine("******* Service Console *******");
using(ServiceHost host = new ServiceHost(typeof(HelloWcfServiceLibrary.HelloService)))
{
host.AddServiceEndpoint(typeof(IHelloService), new NetTcpBinding(), "net.tcp://localhost:9000/HelloWcfService");
host.Open();
Console.Read();
}
}
在客户端,代码是
static void Main(string[] args)
{
IHelloService proxy = ChannelFactory<IHelloService>.CreateChannel(new NetTcpBinding(), new EndpointAddress("net.tcp://localhost:9000/HelloWcfService"));
string msg;
while (true)
{
msg = Console.ReadLine();
msg = proxy.SayHello(msg);
Console.WriteLine("Server returned " + msg);
}
}
它工作正常但我想在Windows Form Application中做同样的事情并显示收到的数据我richtextbox但我不知道该怎么做。 请有人帮助我
答案 0 :(得分:0)
它与你在控制台应用程序中所做的一样。您可以在Load方法中启动ServiceHost,但一个区别是RichTextbox只能在GUI线程中访问,因此您可能必须在某处保存GUI SynchronizationContext,并且当您想要将内容输出到该富文本框时,您需要调用Post方法或发送SynchronizationContext,如:
public class HelloService: IHelloService {
private SynchronizationContext context;
private RichTextbox textbox;
public void SayHello(string msg)
{
context.Post((obj) => textbox.Add("I rec message : " + msg));
}
}
注意:这只是显示一个示例,它可能无法正常工作。