Re: Concurrency issues with ReportUtilities.DownloadClientReport

2013-07-23 Thread Anash P. Oommen (AdWords API Team)
Hi, The library doesn't do anything to do requests in sequence, the only place where it can get blocked is in the number of HTTP connections. I'd also try one additional thing, to prepopulate the authToken as follows: user.Config.AuthToken = new AuthToken(config,

Re: Concurrency issues with ReportUtilities.DownloadClientReport

2013-07-23 Thread sbuteau
After a lot of trial and error, we finally found out a solution. It was simply the case of changing the user under which the windows service was running ! We changed the windows service identity from LOCAL SYSTEM to an Active Directory administrator, and it magically fixed our concurrency

Concurrency issues with ReportUtilities.DownloadClientReport

2013-07-18 Thread sbuteau
Hi, We need help with using the awapi_dotnet_lib_v15.8.0 library (which was the latest version four weeks ago). We currently have a windows service that creates 64 threads. Each thread then fetches reports (CAMPAIGN_PERFORMANCE_REPORT for a single campaign) in a loop. We are having trouble