摘要: 跨域服务:特性WebGet在System.ServiceModel.Web中View Code [ServiceContract] public interface IDomainService { [OperationContract] [WebGet(UriTemplate = "ClientAccessPolicy.xml")] Message ProvidePolicyFile(); } public class DomainService:IDomainService { #region I... 阅读全文
posted @ 2012-04-30 16:46 Bug山Bug海 阅读(647) 评论(0) 推荐(0)
摘要: 服务端类代码服务契约: [ServiceContract(CallbackContract=typeof(IserviceCallBack))] public interface IService1 { [OperationContract] string GetData(int value); } public interface IserviceCallBack { [OperationContract] string GetClientData(); }服务实例: [ServiceBeh... 阅读全文
posted @ 2012-04-30 00:36 Bug山Bug海 阅读(159) 评论(0) 推荐(0)