Hi, The App.config you provided should log soap request/response for v13 too. My guess is that the library is crashing somewhere before the logging actually happens. Will it be possible to post a stacktrace so I may figure out why this is happening?
Visual Studio also allows you to pinpoint the line on which the exception is thrown, even if there is a try-catch against the block. http://stevesmithblog.com/blog/visual-studio-break-when-exception-thrown/ discusses how this can be done. Thanks, Anash P. Oommen, AdWords API Advisor. On Oct 13, 11:35 pm, bgraves <[email protected]> wrote: > I'm getting the following exception thrown from the Adword api every > single time I try to run a report (only happening for one client > account...all other client accounts work fine): > "Arithmetic operation resulted in an overflow." > > I'm assuming that I need a SOAP request for Google to troubleshoot > this. Unfortunately, logging is not working for v13 (ReportService). > However, logging works fine for all v200909 methods. How do I get v13 > ReportService to log a SOAP request? Here's my current config > settings: > <configSections> > <section name="AdWordsApi" > type="com.google.api.adwords.lib.ApplicationConfiguration,google-api- > adwords-dotnet"/> > </configSections> > <AdWordsApi> > <!-- Change the appropriate flags to turn on SOAP logging. --> > <add key="LogPath" value="C:\Logs\"/> > <add key="LogToConsole" value="false"/> > <add key="LogToFile" value="true"/> > <add key="MaskCredentials" value="true"/> > </AdWordsApi> > <system.web> > <webServices> > <soapExtensionTypes> > <add > type="com.google.api.adwords.lib.TraceExtension, > google-api-adwords-dotnet" priority="1" group="0"/> > <add > type="com.google.api.adwords.lib.ApiUnitsExtension, > google-api-adwords-dotnet" priority="1" group="0"/> > </soapExtensionTypes> > </webServices> > </system.web> -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] 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
