Code: Select all
[OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "movex/anp_prd")]
Producer Test2();
Code: Select all
public class Producer
{
[XmlAttribute]
public int Test { get; set; }
[XmlElement]
public string ProducerFound { get; set; }
}
Code: Select all
public Producer Test2()
{
return new Producer
{
Test = 999,
ProducerFound = "Yes"
};
}
Code: Select all
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
Yes
999