Hello ,
Please I am trying to use the SOAP protocol for the MAS API , but it seems that the documentation made on 18th May,2012, shows us how to make requests using some functions, put the functions are unavailable in the current service reference for the MAS API
. Please is there anyway this can be fixed?
APIServiceClient client = new APIServiceClient();
Request request = new Request();
request.AppID = Your_AppID;
request.ResultObjects = ObjectType.Publication;
request.FulltextQuery = "data mining";
request.StartIdx = 1;
request.EndIdx = 1;
request.PublicationContent = new PublicationContentType[]
{ PublicationContentType.Title, PublicationContentType.AuthorName };
Response response = client.Search(request);
foreach (var p in response.Publication.Result)
{
Console.WriteLine(p.Title);
}
the problem with the code starts at line 8, and downhill from there, errors , and in line 10, there is no function as client.Search(request); in the service reference that is available
Thanks,