Hi, We have a class library that uses the .NET client library. When the class methods are called from a console or web application, everything works correctly. When the same class library is loaded from a Powershell script, the method fails with the following error:
The value of the property 'type' cannot be parsed. The error is: Could not load file or assembly 'AdWords' or one of its dependencies. The App.config file contains the following section: <system.web> <webServices> <soapExtensionTypes> <add type="Google.Api.Ads.Common.Lib.SoapListenerExtension, AdWords" priority="1" group="0" ></add> </soapExtensionTypes> </webServices> </system.web> The Powershell script: [Reflection.Assembly]::LoadFrom("[LocalPath]\PowershellTest.dll"); $adWordsTest = New-Object("PowershellTest.AdWordsTest"); $result = $adWordsTest.GetAllCampaigns(); Write-Host "$result"; Can you confirm whether it is possible to invoke the AdWords library in this way, and the action we need to take? Many thanks, John -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en