网上很多用ajax给WCF服务提交JSON数据的例子
类似这样的JSON数据可以和WCF中的方法签名完好的对应
var json = '{"id":'+id+',"mytitle":"'+title+'","mycontent":"'+content+'"}';
现在我想把XML数据提交给WCF服务,但是怎么让XML的节点和WCF中的方法签名对应呢
如
xml+=" <id>"+id+" </id>";
xml+=" <mytitle>"+title+" </mytitle>";
xml+=" <mycontent>"+content+" </mycontent>";
后端WCF方法为
[WebInvoke(ResponseFormat = WebMessageFormat.Xml, RequestFormat=WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
MyDataType XmlService(int id, string mytitle, string mycontent);