AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-12-10 Thread AdWords API Advisor
Hi, Do you have a request ID from one of these failed requests? Thanks, - Eric On Dec 9, 1:47 pm, SEM sem...@gmail.com wrote: Hi Eric: This had been working fine for the past couple of days but fails now (without any code or lib changes) with the following error: Exception in thread main

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-12-09 Thread SEM
Hi Eric: This had been working fine for the past couple of days but fails now (without any code or lib changes) with the following error: Exception in thread main AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultSubcode: faultString:

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-30 Thread AdWords API Advisor
Hi SEMDEV, Looking at your code it doesn't appear you are using the client library to generate your service. Please see the GetRelatedKeywords.java example for more information on how to use the client library:

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-30 Thread SEM
Hi Eric: I switched to instantiating the user using the client library code at... AdWordsServiceLogger.log(); AdWordsUser user = new AdWordsUser(EMAIL, PASSWORD, xxx, xxx, xxx); TargetingIdeaServiceInterface targetingIdeaService =

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-30 Thread AdWords API Advisor
Hi SEMDEV, I'm glad to hear this is working now, and thanks for the feedback about the client library. As for the TargetingIdeaService, there are two types of objects that are easy to confuse: SearchParameters and AttributeTypes. SearchParamters are used to constrain or filter the results that

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-30 Thread SEM
Hi Eric: Thanks ... explicitly specifying additional attribute types worked! On a related note, I have a few questions re: throttling / bandwidth restrictions... a] What is the max number of keywords I can submit in a single request to get keyword variations? b] Suppose I submit a set of

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-29 Thread SEM
Hi Eric: I just updated my project to use the newly downloaded client lib with adwords-lib 6.2.0's jar In addition, I updated my source to use all parameters as in the example above but this still fails with this ambiguous error: Fault occurred while processing. Here's my updated source...

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-25 Thread AdWords API Advisor
Hi, The error appears to be client side, related to XML marshaling or unmarshaling. One problem I see is around the TargetingIdeaPage.getEntries() method. The method should return an array of TargetingIdea objects, not a multidimensional array of Type_AttributeMapEntry.

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-25 Thread SEM
Hi Eric: I update my code to use the downloaded client library in Java i.e. specifically adwords-api-6.0.0.jar (which encapsulates classes generated from v13, v200906 and v200909 wsdls). After this change, I had to update a small section of my code; specifically this part:

AdWords API Re: Problem with TargetingIdeaServiceInterface?

2009-11-25 Thread AdWords API Advisor
Hi SEMDEV, There was actually a new release of the Java Client Library today (6.2.0) that includes an example for the TargetingIdeaService: http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v200909/GetRelatedKeywords.java Best, - Eric On Nov 25, 2:42 pm, SEM