开发者

Accessing a field

开发者 https://www.devze.com 2023-01-09 18:29 出处:网络
I have a Webservice and a client to webservice. I am using Duplex pattern. There is a field in client called \"id\" which is set to some value. The client code is shown below.

I have a Webservice and a client to webservice.

I am using Duplex pattern.

There is a field in client called "id" which is set to some value. The client code is shown below.

string id = "foobar";
InstanceContext context = new InstanceContext(this);
CalcClient client = new CalcClient(context);

How can I access the field "id" in Webservice.

On the serve开发者_运维问答r side I am getting a Callback channel in the following way.

ICalcServiceCallback callback = OperationContext.Current.GetCallbackChannel<ICalcServiceCallback>();

I need to access "id" in the server.

Thanks,


not sure if that's possible, and the WCF duplex service is certainly not designed to do this!

You could define a new operation contract in your callback contract which returns the ID string, though the callback contract is intended as a way for the server to notify the client certain event has happened as a way to implement eventing with WCF, e.g. client subscribes to the server, and the server periodically publishes an update to the client.

It's for this reason that most callback operations are set to be one-way only. Have a read through on this MSDN article, it's a bit old but still relevant and tells you everything you need to know about duplex service in WCF.

http://msdn.microsoft.com/en-us/magazine/cc163537.aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号