Hello, Are you using the .NET client library we provide (http:// code.google.com/apis/adwords/docs/clients.html), or are you generating your own classes from the WSDLs? If you're using the client library then there's information about enabling logging in the README, and it involves modifying your application's config file to add in a soapExtensionTypes entry.
Even if you're generating your own classes you can still download the client library and take a look at the approach used there, and you'd have to incorporate the helper classes from the client library's project into your code. In truth, getAllJobs() doesn't usually need to be called. The normal workflow for running a report is - validateReportJob() - optional, but recommended to make sure your report request is valid - scheduleReportJob() - this returns a report job id which you save for later retrieval - loop on getReportJobStatus() - pass in the report job id and periodically call this method until the report finishes - getReportDownloadUrl()/getGzipReportDownloadUrl() - pass in the report job id and get back a URL from which your report can be retrieved The only time you'd need to call getAllJobs() is if you're not sure what the report job id of a previously scheduled report is, but if you just store it a variable after scheduling your report, you would normally not have to bother with getAllJobs(). Cheers, -Jeff Posnick, AdWords API Team On Nov 7, 1:41 pm, crozzer <[EMAIL PROTECTED]> wrote: > OK, not sure how to generate XML / SOAP trace info with .NET. > > I found this page, but nothing about > .NET.http://www.google.com/support/adwordsapi/bin/answer.py?answer=15137 > > If you could point me in the right direction, that would be great. > Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en -~----------~----~----~----~------~----~------~--~---