我的问题是“为什么我的修改不起作用?”而不是“如何在WCF中创建聊天应用程序?”
Here is the entire source code after modification.。
我修改了this application,以便GUI和服务引擎可以解耦。
即yaazkssvpoi
ChatClient
被分成几个文件,public partial class ChatClient : Form, IChatService
{
}
被重命名为ChatClient
:
ChatClientForm
现在,问题是:服务器启动,用户能够登录,但无法发送和接收消息。
public class ChatClientForm {}
public class ChatService : IChatService{}
public interface IChatChannel : IChatService, IClientChannel {}
public interface IChatService{}
我在那里错过了什么?