|
Hi,
I'm trying to get started on using MSN search and having problems getting started. I'm working through the MSN Search Web Service SDK Help (ver 0.60 beta). I'm trying to add search capability to a web site.
On the help page, "Accessing the MSN Search Web Service SOAP API" , I have followed all the instructions down to adding using <AppName>.<WebReferenceName>. The page won't build with the following error:
"The type or namespace name 'UCRSearch' could not be found (are you missing a using directive or an assembly reference?)"
I have added the reference to http://soap.search.msn.com/webservices.asmx?wsdl and named it MyUCRSearch. The name of the project is UCRSearch. The page code is:
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using UCRSearch.MyUCRSearch;
public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } }
What am I missing? Are there any other examples of using MSN search from a web page?
Thanks,
James |