I'm trying to port and application from V13 to 2009 in
vb.net (2005
express) but am getting an error when trying to create a "new"
instance of the adservice.
[code]
Dim adservice As AdGroupService
adservice = New AdGroupService ' << - causes error "Method
AdGroupService.get can not be reflected."
[/code]
I've tried two different methods:
1) Adding a webreference
https://adwords.google.com/api/adwords/cm/v200909/AdGroupService?wsdl
to the project
2) By creating a vb file using wsdl.exe /language:VB /order
https://adwords.google.com/api/adwords/cm/v200909/AdGroupService?wsdl
and adding this to the project.
(The code above is from method 2)
Both methods generate the error "Method AdGroupService.get can not be
reflected." Any ideas?