The SoapListenerExtension class is not loaded. The most possible cause
for this error is that you haven't registered
Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension
under configuration/system.web/webServices/soapExtensionTypes in your
your App.config or Web.config. See the sample App.config for details
on how to register soap extensions.


It is asking it to regires this in app.config, please tell me how ?>


<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="AdWordsApi"
type="System.Configuration.DictionarySectionHandler"/>
  </configSections>
  <AdWordsApi>
    <!-- Change the appropriate flags to turn on SOAP logging. -->
    <add key="LogPath" value="D:\Logs\"/>
    <add key="LogToConsole" value="false"/>
    <add key="LogToFile" value="false"/>
    <add key="MaskCredentials" value="true"/>
    <add key="LogErrorsOnly" value="false"/>

    <!-- Fill the following values if you plan to use a proxy server.--
>
    <add key="ProxyServer" value=""/>
    <add key="ProxyUser" value=""/>
    <add key="ProxyPassword" value=""/>
    <add key="ProxyDomain" value=""/>

    <!-- Use this key to change the default timeout for Ads services
        (in milliseconds.)-->
    <add key="Timeout" value="100000"/>

    <!-- Use this key to enable or disable gzip compression in SOAP
requests.-->
    <add key="EnableGzipCompression" value="true"/>

    <!-- Fill the header values. -->
    <add key="UserAgent" value="My Test App"/>
    <add key="Email" value="[email protected]"/>
    <add key="Password" value**********"/>
    <add key="ClientEmail" value="[email protected]"/>
    <add key="DeveloperToken" value="[email protected]++USD"/>
    <!-- Application token is now optional and will be ignored by the
server.-->
    <!-- <add key="ApplicationToken"
value="ENTER_YOUR_APPLICATION_TOKEN_HERE"/> -->

    <!-- Uncomment this key and comment ClientEmail if you want to
specify
         customer id instead of customer email. -->
    <!-- <add key="ClientCustomerId"
        value="ENTER_YOUR_CLIENT_CUSTOMER_ID_HERE"/> -->

    <!-- Uncomment this if you want to reuse an authToken multiple
times. -->
    <!--<add key="AuthToken" value="ENTER_YOUR_AUTH_TOKEN_HERE"/> -->

    <!-- Uncomment this key if you want to use v13 sandbox. -->
    <add key="LegacyAdWordsApi.Server" value="https://
sandbox.google.com"/>

    <!-- Uncomment this key if you want to use AdWords API sandbox. --
>
    <add key="AdWordsApi.Server" value="https://adwords-
sandbox.google.com"/>
  </AdWordsApi>
  <system.web>
    <webServices>
      <soapExtensionTypes>
        <add type="Google.Api.Ads.Common.Lib.SoapListenerExtension,
AdWords"
             priority="1" group="Low"/>
      </soapExtensionTypes>
    </webServices>
  </system.web>
  <system.net>
    <settings>
      <httpWebRequest maximumErrorResponseLength="-1"  />
    </settings>
  </system.net>
</configuration>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

Reply via email to