I am trying to figure Bings Seach API out. I have added the SOAP service to my solution, and I do receive results. The issue, is that the displayed results are always the same, not matter what I have set the request.Web to. When I do the search, it displays 98 results, so it isn't the lack of results.

        BingService soapClient = new BingService();

        string resp = string.Empty;
        SearchRequest request = new SearchRequest();
        request.AppId = ConfigurationManager.AppSettings["BingKey"];
        request.Sources = new BingLiveSearchService.SourceType[] { SourceType.Web };
        request.Query = query;
        request.Web = new BingLiveSearchService.WebRequest { Count = 10, Offset = 10 };

        var response = soapClient.Search(request);
        if (response.Web != null && response.Web.Total > 0)
        {
            resp += "TOTAL COUNT:"+response.Web.Total +"<br/><br />";
            foreach (var item in response.Web.Results)
            {
                resp += "<div style='padding-bottom:10px;'>" + item.Title + "</div>";
            }

        }
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

this is weird with these API but you need to set specified variable to true so add

request.Web.CountSpecified = true;
request.Web.OffsetSpecified = true;
link|improve this answer
If I specify the value, why also state I have specified it, wierd :) One wierd thing is that if I do the initial search without the offset it says 98 results, if I then set the offset to 10, it says there are 18 results. Do you know why this happens? – Dofs Nov 19 '11 at 10:20
1  
its bing my friend, its bing :) – Adithya Surampudi Nov 19 '11 at 10:22
I am having the same issue I am getting only 41 results for a simple word 'game' I am using json.. Please help me to fix this issue. I have asked a question stackoverflow.com/questions/8637051/… – Dilip Rajkumar Dec 27 '11 at 11:25
feedback

Have a look at WebRequest.Count. It looks like you can configure the number of results to return via this.

EDIT: Here's an example where .Count is used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.