M
Marchi Giuseppe
Hi everyone.
I have a wcf service with a CallbackContrat that enable me to get response
from the service in a windows form application.
[ServiceContract(CallbackContract = typeof(ICallback))]
public interface IService
and into the windows from i have:
public partial class ChatForm : Form, IServiceCallback
Can i use that interface in a asp.net page ?
public partial class _Default : System.Web.UI.Page, IServiceCallback
Something like this is possible ?
Thanks in advance
I have a wcf service with a CallbackContrat that enable me to get response
from the service in a windows form application.
[ServiceContract(CallbackContract = typeof(ICallback))]
public interface IService
and into the windows from i have:
public partial class ChatForm : Form, IServiceCallback
Can i use that interface in a asp.net page ?
public partial class _Default : System.Web.UI.Page, IServiceCallback
Something like this is possible ?
Thanks in advance