Hi Mauricio, These errors indicate that certain properties of the BulkMutateJob are read only and can't be set during the request. My guess is that after the ADD operation, you swap out the BulkMutateRequest (part) and re- sending the same job. What you'll need to do is either create a new BulkMutateJob object with the same ID, or clear out those read only fields before re-sending the job.
Best, - Eric Koleda, AdWords API Team On Apr 5, 12:05 pm, Emegé <[email protected]> wrote: > Im trying to perform several job operation over the same job. > Basically I'm uploading Ad to existing adGroups... > > The code: > > JobOperation jobOperation = new JobOperation(); > jobOperation.operatorSpecified = true; > jobOperation.operand = bulkJob; > joboperati...@operator = (partIndex == 0 ? Operator.ADD : > Operator.SET); > bulkJob = service.mutate(jobOperation); > > The errors: > > ReadOnlyError.READ_ONLY @ operation.operand.context > ReadOnlyError.READ_ONLY @ operation.operand.status > ReadOnlyError.READ_ONLY @ operation.operand.policy > ReadOnlyError.READ_ONLY @ operation.operand.numRequestPartsReceived > > I wonder if somebody expirienced the same scenario... > > Regards, > Mauricio -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you migrated to v200909 yet? The v13 sunset is on April 22, 2010. 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 To unsubscribe, reply using "remove me" as the subject.
