I am using C# and I am using the webservice: https://technet.rapaport.com/WebServices/RetailFeed/Feed.asmx
I am able to authenticate and get a valid token, but I am unable to get any diamonds. I always get an empty list.
Here is my code:
rapaport.Feed RF = new rapaport.Feed();
rapaport.FeedParameters Params = new rapaport.FeedParameters();
RF.Login("CorrectUsername", "CorrectPassword");
Params.PageSize = 50;//Max Page size is 50
int DiamondsCount = 5;
System.Data.DataSet ds = RF.GetDiamonds(Params, ref DiamondsCount);
if (ds.Tables[0].Rows.Count == 0)
{
//Empty List
}
else
{
//Not an Empty List
}