客户端GET请求没有返回任何内容?

时间:2012-04-07 16:32:35

标签: c# wcf web-services rest

我觉得我的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的客户端代码有关?

我更新了我的问题,以反映我以前得到的小错误,哪个冲浪解决了(404错误),但这还没有解决我没有得到任何回复的问题?

1 个答案:

答案 0 :(得分:2)

我认为您在网址中犯了错误:

string uriGetGroupsCollection = "http://localhost:8000/Service/GetGroupsCollection/{TagName}";

因为你定义了这样的URITemplate:"/Group/{TagName}"

[OperationContract] 
[WebInvoke(Method = "GET", 
BodyStyle = WebMessageBodyStyle.Bare, 
RequestFormat = WebMessageFormat.Xml, 
ResponseFormat = WebMessageFormat.Xml, 
UriTemplate = "/Group/{TagName}")]
List<Group> GetGroupsCollection(string TagName);

因此,客户端中的URL应如下所示:

string uriGetGroupsCollection = "http://localhost:8000/Service/Group/{TagName}";

将您的URITemplate更改为:

UriTemplate = "/GetGroupsCollection/{TagName}")]

<强>更新

您的AddTagtoGroup还有另一个错字。

    var result = Groups.Where(n => String.Equals(n.GroupName, tag)).FirstOrDefault();

应该是:

    var result = Groups.Where(n => String.Equals(n.GroupName, group)).FirstOrDefault();