我认为我的 GET 方法出了点问题,因为当我尝试运行一段客户端代码时,我没有得到任何返回。
我的 GET 操作合约如下所示:
[OperationContract]
[WebInvoke(Method = "GET",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml,
UriTemplate = "/Group/{TagName}")]
List<Group> GetGroupsCollection(string TagName);
public List<Group> GetGroupsCollection(string TagNames)
{
List<Group> groups = (from g in Groups
where
(from t in g.Tags where t.TagName == TagNames select t).Count() > 0
select g).ToList();
return groups;
}
现在我没有任何数据来测试它,所以我必须从客户端手动添加组和标签,然后我尝试将标签添加到组中,我这样做是这样的:
[OperationContract]
[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, UriTemplate = "/AddTagtoGroup/{group}/{tag}")]
void AddTagtoGroup(string group, string tag);
public void AddTagtoGroup(string group, string tag)
{
var result = Groups.Where(n => String.Equals(n.GroupName, tag)).FirstOrDefault();
if (result != null)
{
result.Tags.Add(new Tag() { TagName = tag });
}
}
从客户端这是这样完成的:
private void AddTagetoGroup_Click(object sender, EventArgs e)
{
string uriAddTagtoGroup = string.Format("http://localhost:8000/Service/AddTagtoGroup/{0}/{1}", textBox6.Text, textBox7.Text);
byte[] arr = Encoding.UTF8.GetBytes(uriAddTagtoGroup);
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(uriAddTagtoGroup);
req.Method = "POST";
req.ContentType = "application/xml";
req.ContentLength = arr.Length;
Stream reqStrm = req.GetRequestStream();
reqStrm.Write(arr, 0, arr.Length);
reqStrm.Close();
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
MessageBox.Show(resp.StatusDescription);
reqStrm.Close();
resp.Close();
}
我得到的消息是好的,一切似乎都很好。
现在我遇到问题的客户端代码是这样的:
string uriGetGroupsCollection = "http://localhost:8000/Service/GetGroupsCollection/{TagName}";
private void button8_Click(object sender, EventArgs e)
{
string tagUri = uriGetGroupsCollection.Replace("{TagName}", textBox8.Text);
XDocument xDoc = XDocument.Load(tagUri); //this line gives 404 error not found.
var Tag = xDoc.Descendants("Group")
.Select(n => new
{
Tag = n.Element("GroupName").Value,
})
.ToList();
dataGridView3.DataSource = Tag;
}
这与我首先提到的 GET 操作有关。所以我不确定如何找出它的客户端代码做错了什么还是我的实际GetGroupsCollection
方法?
所以我的问题与向组添加标签有关:
public void AddTagtoGroup(string group, string tag)
{
var result = Groups.Where(n => String.Equals(n.GroupName, tag)).FirstOrDefault();
if (result != null)
{
result.Tags.Add(new Tag() { TagName = tag });
}
}
或者它与客户端代码有关GetGroupsCollection
?
我更新了我的问题以反映我之前遇到的小错误,哪个 surfen 解决了(404 错误),但这并没有解决我没有得到任何东西的问题?