我有這個特定的方法(片段下面),我想要得到的XML結果。我有一個WebGet方法,我怎樣才能得到XML結果?
服務器
[OperationContract]
[WebGet(UriTemplate = "getcustomerschema/userCode={userCode}/password={password}",
ResponseFormat= WebMessageFormat.Xml,
RequestFormat= WebMessageFormat.Xml,
BodyStyle= WebMessageBodyStyle.Wrapped)]
public DataSet GetCustomerSchema(string userCode, string password)
{
//method
}
客戶
using (HttpResponseMessage response = m_RestHttpClient.Get("getcustomerschema/userCode=admin/password=admin"))
{
//how can I get the xml resuly from the httpResponseMessage?
}
感謝
感謝您的建議符文... .i實際上使用fiddler來調試。我關心的是如何在客戶端應用程序中獲取原始xml。謝謝 – Ravi 2010-09-08 10:59:39