gpt4 book ai didi

.net - WCF:如何检测到 WCF PerSession 服务的新连接?

转载 作者:行者123 更新时间:2023-12-04 14:43:12 27 4
gpt4 key购买 nike

我有一个自承载的 WCF 服务,其 InstanceContextMode 设置为 PerSession。
如何从主机应用程序检测到我的服务的新客户端连接( session ),并使用该新 session 上下文通过其事件观察我的服务?

类似于:

[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
public class MyService : IMyService {
public event EventHandler ClientRegistered;
public event EventHandler FileUploaded;
}

并且从我的主机应用程序能够做到:

ServiceHost svc = new ServiceHost(typeof(MyService));
svc.Open();

// something like:
svc.NewSession += new EventHandler(...)

//...

public void SessionHandler(InstanceContext SessionContext) {
MySessionHandler NewSessionHandler = new MySessionHandler(SessionContext);

// From MySessionHandler I handle the service's events (FileUploaded, ClientRegistered)
// for this session and notify the UI of any changes.
NewSessionHandler.Handle();
}

最佳答案

您可以在服务契约(Contract)中使用 IsInitiating

[OperationContract(IsInitiating = true)]
void FirstMethod();

请参阅以下链接:

http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/8137553a-8657-475e-b9ca-5914d9c9d57a

关于.net - WCF:如何检测到 WCF PerSession 服务的新连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2442004/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com