Re: Changing TargetContentContextual fail with CANNNOT MODIFY NETWORK CONTEXUAL

2012-10-02 Thread aminotsukasa
Hi Danial

If ContentContextual has any meaning with disabled display network.
I think ContentContextual can have a flexible reach meaning (null value)
Why ContentContextual can have only true or false value?

2012年10月2日火曜日 19時11分47秒 UTC+9 AdWords API Advisor:

 Hello aminotsukasa, 


 I believe in case 2 as the campaign set up specific range, 
 TargetContentContextual still has meaning and can not be null. Set this to 
 true to enable Specific Reach and to false to enable Broad Reach. 


 -Danial, AdWords API Team. 


 Original Message Follows: 
  
 From: aminotsukasa aminot...@gmail.com javascript: 
 Subject: Re: Changing TargetContentContextual fail with CANNNOT MODIFY 
 NETWORK CONTEXUAL 
 Date: Fri, 28 Sep 2012 03:47:10 -0700 (PDT) 

  Hello Daniel 
  
  I already know a campaign with flexible reach don't have a 
  meaningful TargetContentContextual value. 
  Because getTargetContentContextual() returns null value. When I get a 
  campaign from CampaignServiceInterface#get. 

  Case 1 
  I modify a campaign with display network and flexible reach to without 
  display network. 
  I send a campaign to adwords server with 
 setTargetContentContextual(null). 
  It's OK 
  
  Case 2 
  I modify a campaign with display network and specific range to without 
  display network. 
  I send a campaign to adwords server with 
 setTargetContentContextual(null). 
  It's failed. 
  
  With both 2 case I modify a campaign to without display network. I send 
 a 
  same value of setTargetContentContextual() and   
  setTargetContentContextual() in both case. 
  Why only case 2 is failed? 
  
  
  2012年9月28日金曜日 18時49分17秒 UTC+9 Danial Klimkin: 
   
   Hello aminotsukasa, 
   
   
   Once TargetContentContextual setting can not be modified for any new 
   campaign. It only had meaning before Flexible Targeting was 
 introduced. 
   Please see this article for more details: 
   
 
   
 http://support.google.com/adwords/bin/answer.py?hl=enanswer=1209882from=2575708rd=1
  
   
   In short: don't send networkSetting.setTargetContentContextual for any 
 new 
   campaign. 
   
   
   -Danial, AdWords API Team. 
   
   
   On Wednesday, September 26, 2012 12:57:07 PM UTC+4, aminotsukasa 
 wrote: 
   
   Hi all 
   
   I'm now creating a program with google-ads-lib 1.8. 
   Now I found a strange *behavior. 
   * 
   This behavior occurred with Changing a Campaign with display 
 network.(not 
   registering)* 
   
   *First I create a campaign with display network 
   (Because My customer has some campaigns with display network created 
 by 
   201109 Adwords-lib) 
   It is a fragment of campaign creation program. 
networkSetting.setTargetContentNetwork(true) 
networkSetting.setTargetContentContextual(true); 
   
   Second I change this campaign setting from with display network to 
   without display network. 
networkSetting.setTargetContentNetwork(false) 
networkSetting.setTargetContentContextual(null); 
   and send content with CampaignServiceInterface#mutate 
   
   Adwords Server returns these fault code. 
   
AxisFault 
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server 
 faultSubcode: 
 faultString: [TargetError.CANNOT_MODIFY_CONTENT_CONTEXTUAL @ 
   operations[0].operand.networkSetting] 
 faultActor: 
 faultNode: 
 faultDetail: 
   
   
   But I change campaign with display network and flexible reach. This 
 error 
   is not occurred. 
   I create a campaign with this code. 
networkSetting.setTargetContentNetwork(true) 
networkSetting.setTargetContentContextual(null); 
   
   and I change campaign setting with this code. 
networkSetting.setTargetContentNetwork(false) 
networkSetting.setTargetContentContextual(null); 
   It's Ok! 
   
   Is this a correct specification ? 
   
   
  
  -- 
  =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 
  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 adwor...@googlegroups.comjavascript: 
  To unsubscribe from this group, send email to 
  adwords-api...@googlegroups.com javascript: 
  For more options, visit this group at 
  http://groups.google.com/group/adwords-api?hl=en 



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

Re: Changing TargetContentContextual fail with CANNNOT MODIFY NETWORK CONTEXUAL

2012-09-28 Thread aminotsukasa
Hello Daniel

I already know a campaign with flexible reach don't have a 
meaningful TargetContentContextual value.
Because getTargetContentContextual() returns null value. When I get a 
campaign from CampaignServiceInterface#get. 
 
Case 1
I modify a campaign with display network and flexible reach to without 
display network.
I send a campaign to adwords server with setTargetContentContextual(null). 
It's OK

Case 2
I modify a campaign with display network and specific range to without 
display network. 
I send a campaign to adwords server with setTargetContentContextual(null). 
It's failed.

With both 2 case I modify a campaign to without display network. I send a 
same value of setTargetContentContextual() and  
setTargetContentContextual() in both case.
Why only case 2 is failed?


2012年9月28日金曜日 18時49分17秒 UTC+9 Danial Klimkin:

 Hello aminotsukasa,


 Once TargetContentContextual setting can not be modified for any new 
 campaign. It only had meaning before Flexible Targeting was introduced. 
 Please see this article for more details:

   
 http://support.google.com/adwords/bin/answer.py?hl=enanswer=1209882from=2575708rd=1

 In short: don't send networkSetting.setTargetContentContextual for any new 
 campaign.


 -Danial, AdWords API Team.


 On Wednesday, September 26, 2012 12:57:07 PM UTC+4, aminotsukasa wrote:

 Hi all

 I'm now creating a program with google-ads-lib 1.8.
 Now I found a strange *behavior.
 *
 This behavior occurred with Changing a Campaign with display network.(not 
 registering)*

 *First I create a campaign with display network 
 (Because My customer has some campaigns with display network created by 
 201109 Adwords-lib)
 It is a fragment of campaign creation program.
  networkSetting.setTargetContentNetwork(true)
  networkSetting.setTargetContentContextual(true);

 Second I change this campaign setting from with display network to 
 without display network.
  networkSetting.setTargetContentNetwork(false)
  networkSetting.setTargetContentContextual(null);
 and send content with CampaignServiceInterface#mutate

 Adwords Server returns these fault code.

  AxisFault
   faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
   faultSubcode: 
   faultString: [TargetError.CANNOT_MODIFY_CONTENT_CONTEXTUAL @ 
 operations[0].operand.networkSetting]
   faultActor: 
   faultNode: 
   faultDetail: 


 But I change campaign with display network and flexible reach. This error 
 is not occurred.
 I create a campaign with this code.
  networkSetting.setTargetContentNetwork(true)
  networkSetting.setTargetContentContextual(null);

 and I change campaign setting with this code.
  networkSetting.setTargetContentNetwork(false)
  networkSetting.setTargetContentContextual(null);
 It's Ok!

 Is this a correct specification ?



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


Changing TargetContentContextual fail with CANNNOT MODIFY NETWORK CONTEXUAL

2012-09-26 Thread aminotsukasa
Hi all

I'm now creating a program with google-ads-lib 1.8.
Now I found a strange *behavior.
*
This behavior occurred with Changing a Campaign with display network.(not 
registering)*

*First I create a campaign with display network 
(Because My customer has some campaigns with display network created by 
201109 Adwords-lib)
It is a fragment of campaign creation program.
 networkSetting.setTargetContentNetwork(true)
 networkSetting.setTargetContentContextual(true);

Second I change this campaign setting from with display network to without 
display network.
** networkSetting.setTargetContentNetwork(false)
 networkSetting.setTargetContentContextual(null);
and send content with CampaignServiceInterface#mutate

Adwords Server returns these fault code.

 AxisFault
  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
  faultSubcode: 
  faultString: [TargetError.CANNOT_MODIFY_CONTENT_CONTEXTUAL @ 
operations[0].operand.networkSetting]
  faultActor: 
  faultNode: 
  faultDetail: 


But I change campaign with display network and flexible reach. This error 
is not occurred.
I create a campaign with this code.
 networkSetting.setTargetContentNetwork(true)
 networkSetting.setTargetContentContextual(null);

and I change campaign setting with this code.
** networkSetting.setTargetContentNetwork(false)
 networkSetting.setTargetContentContextual(null);
It's Ok!

Is this a correct specification ?

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


how to set timeout(java ads-lib 1.8)

2012-09-11 Thread aminotsukasa
Hi all

Now I'm writing a program with new adwords library.
I will use this program with slow network(3G/WLAN)
Because I want to set timeout second to Service class.
But I can't find out setTimeout method.

 service = adWordsServices.get(session, 
TargetingIdeaServiceInterface.class);
 service.setTimeout(xxx); // No such method!

With old library(adwords-lib 8) I can set timeout second .
 ((org.apache.axis.client.Stub) service).setTimeout(timeout);

Does anyone know the issue?
How many default timeout second?

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


Re: Migration to v201206 java api

2012-09-05 Thread aminotsukasa
Thank you Anash.
Would you check two more substitute class ?
V201109 package has these class. but V201206 class don't have.

1.ServiceAccountantManager (to know api operation count and remove service 
class reference)
2.RelatedToKeywordSearchParameter(to keyword suggestion service)

Cheers.

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


Migration to v201206 java api

2012-09-03 Thread aminotsukasa
Hi all

Now I 'm writing java api migration guide document to team members.
Does anyone know following issue?

1. Java api Ver8.7 has classes in package v201109.
How long can I use? Oct.26?

2.New API library (Google Ads APIs 1.8) has classes in package v201109.
How long can I use? Oct.26?

3.v201206 package does not have classes contained in v201109 package
Ex.
CampaignTargetServiceInterface
ServicedAccountGraph
KeywordMatchTypeSearchParameter
ServicedAccountServiceInterface

I 'm looking for a substitute http://ejje.weblio.jp/content/substituteclass.
Anyone know a substitute 
http://ejje.weblio.jp/content/substituteclass/correspondence table
?

4.New api javadoc 
(http://javadoc.google-api-ads-java.googlecode.com/git/1.8.0/index.html) 
does not contain some public classes.
such as ManagedCustomerService,CustomerService
Anyone have more information about this class?

thanks

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