I get Timeout on the GetMyeBaySelling call. No problems with other APIs calls like getOrders and so forth. The code below was working 1-2 months ago. Now not working anymore. Somebody knows what could have happen.
Regards
--------------------------------------------------------------------------------------------------------------
GetSellerListCall oGetMyeBaySellingCall = new GetSellerListCall(apiCtx);
// set the Version used in the call
oGetMyeBaySellingCall.Version = apiCtx.Version;
// set the Site of the call
oGetMyeBaySellingCall.Site = apiCtx.Site;
// enable the compression feature
oGetMyeBaySellingCall.EnableCompression = true;
/// oGetMyeBaySellingCall.DetailLevelList.Add(DetailLevelCodeType.ReturnAll);
//oGetMyeBaySellingCall.DetailLevelList.Add(DetailLevelCodeType.ItemReturnDescription);
//oGetMyeBaySellingCall.DetailLevelList.Add(DetailLevelCodeType.ItemReturnCategories);
//oGetMyeBaySellingCall.DetailLevelList.Add(DetailLevelCodeType.ItemReturnAttributes);
string strEndTimeTo = DateTime.Now.AddDays(30).ToString("yyyy-MM-ddThh:mm:ssZ");
string strEndTimeFrom = DateTime.Now.AddDays(-90).ToString("yyyy-MM-ddThh:mm:ssZ");
oGetMyeBaySellingCall.EndTimeFrom = Convert.ToDateTime(strEndTimeFrom).ToUniversalTime();
oGetMyeBaySellingCall.EndTimeTo = Convert.ToDateTime(strEndTimeTo).ToUniversalTime();
oGetMyeBaySellingCall.Execute();