Windows Vista Beta | WinVistaBeta.com - Message | Calling methods on DataContracts

July 04, 2008  
Subject: Calling methods on DataContracts
Group: microsoft.public.windows.developer.winfx.indigo
Date: 3/10/2008 1:39:47 PM
From: rajigopal@gmail.com

Hi,

I have this requirement that a web service be used to return an object
that the client can call methods on. For e.g:

WebServiceClient c = new WebServiceClient();
SomeObject o = c.GetObject();
o.DoSomething();
o.Save();

Is this possible with current state of WCF? If so, how?

Thanks!

Back