Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

I took a look at the *BatchJobHelper* utility, and one thing you might try 
is specifying an alternate TransformerFactory 

 via 
the *javax.xml.transform.TransformerFactory* system property. Per the 
javadoc:

The system property that determines which Factory implementation to create 
> is named "javax.xml.transform.TransformerFactory". This property names a 
> concrete subclass of the TransformerFactory abstract class. If the property 
> is not defined, a platform default is be used.


Thanks,
Josh, AdWords API Team

On Monday, December 21, 2015 at 4:42:53 PM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> We use some of the reporting service. But there are working as expected.
>
> Thanks,
> Kainesh
>
> On Tuesday, December 22, 2015 at 3:09:05 AM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> On the production machine where you ran into issues, have you 
>> successfully used any of the SOAP services and the report services? I ask 
>> because those use many of the same XML utilities used by the 
>> BatchJobService utility.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, December 21, 2015 at 4:17:52 PM UTC-5, Kainesh Patel wrote:
>>>
>>> Hi Josh,
>>>
>>> I planned to migrate from BatchJobService to BulkMutateService (a month 
>>> back). It worked on my local machine, but it got broke down in production 
>>> environment, I then have to revert back the changes and came back again to 
>>> BatchJobService. I was able to do that since BatchJobService wasn't 
>>> deprecated yet. But 6 months down the line, I won't be able to do that.
>>>
>>> So, can you please ask developer community to look into this?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>>
>>>
>>> On Tuesday, December 22, 2015 at 2:16:04 AM UTC+5:30, Kainesh Patel 
>>> wrotet.

 Yes. I didn't got NoClassDefFoundError and xml parser didn't worked 
 correctly. By any chance, it can be fixed by importing libraries and if 
 yes, can you can include it in your jar?

 Thanks,
 Kainesh

 On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff 
 (AdWords API Team) wrote:
>
> Hi Kainesh,
>
> Those utilities should be present in any JRE. I think the issue you 
> had was that the particular JRE you were using had a bug that meant that 
> the XML wasn't being parsed properly. If it had been an issue with a 
> missing dependency, I think you would have seen a NoClassDefFoundError 
> 
>  
> instead.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> As you have mentioned, BatchJobHelper depends on XML utilities which 
>> may or may not be present in JRE. Can you file a ticket/bug or discuss 
>> with 
>> dev team to include this libraries in google adwords api jar?
>>
>> Thanks,
>> Kainesh
>>
>> On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
>> (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> I'm not an expert on the differences between those JREs, but I can 
>>> tell you that the *BatchJobHelper* relies heavily on the XML 
>>> utilities included in the JRE. It's possible that the older 1.6 JRE you 
>>> were using had issues in that space, which would explain why upgrading 
>>> fixed the problem for you.
>>>
>>> Cheers,
>>> Josh, AdWords API Team
>>>
>>> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel 
>>> wrote:

 Hi Josh,

 As a temporary workaround, we have changed our java version from 

 java version "1.6.0_21"
 Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
 Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

 to

 java version "1.6.0_36"
 OpenJDK Runtime Environment (IcedTea6 1.13.8) 
 (6b36-1.13.8-0ubuntu1~12.04)
 OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)

 Since both of the versions have same major release and both are 64 
 bits, it looks strange why it is working with one java version and 
 doesn't 
 in another?

 Can you share few differences between OpenJDK and HotStar java.

 What does google prefer?

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh 
 Patel wrote:
>
> Hi Josh,
>
> Any update you would like to share with me?
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh 
> Patel wrote:

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh,

We use some of the reporting service. But there are working as expected.

Thanks,
Kainesh

On Tuesday, December 22, 2015 at 3:09:05 AM UTC+5:30, Josh Radcliff 
(AdWords API Team) wrote:
>
> Hi Kainesh,
>
> On the production machine where you ran into issues, have you successfully 
> used any of the SOAP services and the report services? I ask because those 
> use many of the same XML utilities used by the BatchJobService utility.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, December 21, 2015 at 4:17:52 PM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> I planned to migrate from BatchJobService to BulkMutateService (a month 
>> back). It worked on my local machine, but it got broke down in production 
>> environment, I then have to revert back the changes and came back again to 
>> BatchJobService. I was able to do that since BatchJobService wasn't 
>> deprecated yet. But 6 months down the line, I won't be able to do that.
>>
>> So, can you please ask developer community to look into this?
>>
>> Thanks,
>> Kainesh
>>
>>
>>
>> On Tuesday, December 22, 2015 at 2:16:04 AM UTC+5:30, Kainesh Patel 
>> wrotet.
>>>
>>> Yes. I didn't got NoClassDefFoundError and xml parser didn't worked 
>>> correctly. By any chance, it can be fixed by importing libraries and if 
>>> yes, can you can include it in your jar?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff 
>>> (AdWords API Team) wrote:

 Hi Kainesh,

 Those utilities should be present in any JRE. I think the issue you had 
 was that the particular JRE you were using had a bug that meant that the 
 XML wasn't being parsed properly. If it had been an issue with a missing 
 dependency, I think you would have seen a NoClassDefFoundError 
 
  
 instead.

 Thanks,
 Josh, AdWords API Team

 On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> As you have mentioned, BatchJobHelper depends on XML utilities which 
> may or may not be present in JRE. Can you file a ticket/bug or discuss 
> with 
> dev team to include this libraries in google adwords api jar?
>
> Thanks,
> Kainesh
>
> On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> I'm not an expert on the differences between those JREs, but I can 
>> tell you that the *BatchJobHelper* relies heavily on the XML 
>> utilities included in the JRE. It's possible that the older 1.6 JRE you 
>> were using had issues in that space, which would explain why upgrading 
>> fixed the problem for you.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> As a temporary workaround, we have changed our java version from 
>>>
>>> java version "1.6.0_21"
>>> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
>>> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>>>
>>> to
>>>
>>> java version "1.6.0_36"
>>> OpenJDK Runtime Environment (IcedTea6 1.13.8) 
>>> (6b36-1.13.8-0ubuntu1~12.04)
>>> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>>>
>>> Since both of the versions have same major release and both are 64 
>>> bits, it looks strange why it is working with one java version and 
>>> doesn't 
>>> in another?
>>>
>>> Can you share few differences between OpenJDK and HotStar java.
>>>
>>> What does google prefer?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi Josh,

 Any update you would like to share with me?

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> Hi Josh,
>
> I have send you mail at adwordsa...@google.com.
> Please check it.
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh 
> Patel wrote:
>>
>> Hi,
>>
>> I have a send you a mail. Please check it.
>>
>> Thanks,
>> Kainesh
>>
>> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh 
>> Radcliff (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> Could you share the code you're using that leads to this result? 
>>> You can send it *only to me* (if you'd prefer) by clicking *Reply 
>>> privately to author* on this post.
>>>
>>> Thanks,
>>> Josh, 

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

On the production machine where you ran into issues, have you successfully 
used any of the SOAP services and the report services? I ask because those 
use many of the same XML utilities used by the BatchJobService utility.

Thanks,
Josh, AdWords API Team

On Monday, December 21, 2015 at 4:17:52 PM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> I planned to migrate from BatchJobService to BulkMutateService (a month 
> back). It worked on my local machine, but it got broke down in production 
> environment, I then have to revert back the changes and came back again to 
> BatchJobService. I was able to do that since BatchJobService wasn't 
> deprecated yet. But 6 months down the line, I won't be able to do that.
>
> So, can you please ask developer community to look into this?
>
> Thanks,
> Kainesh
>
>
>
> On Tuesday, December 22, 2015 at 2:16:04 AM UTC+5:30, Kainesh Patel wrotet.
>>
>> Yes. I didn't got NoClassDefFoundError and xml parser didn't worked 
>> correctly. By any chance, it can be fixed by importing libraries and if 
>> yes, can you can include it in your jar?
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff 
>> (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> Those utilities should be present in any JRE. I think the issue you had 
>>> was that the particular JRE you were using had a bug that meant that the 
>>> XML wasn't being parsed properly. If it had been an issue with a missing 
>>> dependency, I think you would have seen a NoClassDefFoundError 
>>> 
>>>  
>>> instead.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:

 Hi Josh,

 As you have mentioned, BatchJobHelper depends on XML utilities which 
 may or may not be present in JRE. Can you file a ticket/bug or discuss 
 with 
 dev team to include this libraries in google adwords api jar?

 Thanks,
 Kainesh

 On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
 (AdWords API Team) wrote:
>
> Hi Kainesh,
>
> I'm not an expert on the differences between those JREs, but I can 
> tell you that the *BatchJobHelper* relies heavily on the XML 
> utilities included in the JRE. It's possible that the older 1.6 JRE you 
> were using had issues in that space, which would explain why upgrading 
> fixed the problem for you.
>
> Cheers,
> Josh, AdWords API Team
>
> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel 
> wrote:
>>
>> Hi Josh,
>>
>> As a temporary workaround, we have changed our java version from 
>>
>> java version "1.6.0_21"
>> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
>> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>>
>> to
>>
>> java version "1.6.0_36"
>> OpenJDK Runtime Environment (IcedTea6 1.13.8) 
>> (6b36-1.13.8-0ubuntu1~12.04)
>> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>>
>> Since both of the versions have same major release and both are 64 
>> bits, it looks strange why it is working with one java version and 
>> doesn't 
>> in another?
>>
>> Can you share few differences between OpenJDK and HotStar java.
>>
>> What does google prefer?
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> Any update you would like to share with me?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi Josh,

 I have send you mail at adwordsa...@google.com.
 Please check it.

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> Hi,
>
> I have a send you a mail. Please check it.
>
> Thanks,
> Kainesh
>
> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh 
> Radcliff (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> Could you share the code you're using that leads to this result? 
>> You can send it *only to me* (if you'd prefer) by clicking *Reply 
>> privately to author* on this post.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> Even I am trying  the same. But its pointing to null and even I 
>>> tried mutateResult.getErrorList(), even that is null.
>>>
>>> Thanks,
>>> Kai

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh,

I planned to migrate from BatchJobService to BulkMutateService (a month 
back). It worked on my local machine, but it got broke down in production 
environment, I then have to revert back the changes and came back again to 
BatchJobService. I was able to do that since BatchJobService wasn't 
deprecated yet. But 6 months down the line, I won't be able to do that.

So, can you please ask developer community to look into this?

Thanks,
Kainesh



On Tuesday, December 22, 2015 at 2:16:04 AM UTC+5:30, Kainesh Patel wrotet.
>
> Yes. I didn't got NoClassDefFoundError and xml parser didn't worked 
> correctly. By any chance, it can be fixed by importing libraries and if 
> yes, can you can include it in your jar?
>
> Thanks,
> Kainesh
>
> On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> Those utilities should be present in any JRE. I think the issue you had 
>> was that the particular JRE you were using had a bug that meant that the 
>> XML wasn't being parsed properly. If it had been an issue with a missing 
>> dependency, I think you would have seen a NoClassDefFoundError 
>> 
>>  
>> instead.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:
>>>
>>> Hi Josh,
>>>
>>> As you have mentioned, BatchJobHelper depends on XML utilities which may 
>>> or may not be present in JRE. Can you file a ticket/bug or discuss with dev 
>>> team to include this libraries in google adwords api jar?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
>>> (AdWords API Team) wrote:

 Hi Kainesh,

 I'm not an expert on the differences between those JREs, but I can tell 
 you that the *BatchJobHelper* relies heavily on the XML utilities 
 included in the JRE. It's possible that the older 1.6 JRE you were using 
 had issues in that space, which would explain why upgrading fixed the 
 problem for you.

 Cheers,
 Josh, AdWords API Team

 On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel 
 wrote:
>
> Hi Josh,
>
> As a temporary workaround, we have changed our java version from 
>
> java version "1.6.0_21"
> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>
> to
>
> java version "1.6.0_36"
> OpenJDK Runtime Environment (IcedTea6 1.13.8) 
> (6b36-1.13.8-0ubuntu1~12.04)
> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>
> Since both of the versions have same major release and both are 64 
> bits, it looks strange why it is working with one java version and 
> doesn't 
> in another?
>
> Can you share few differences between OpenJDK and HotStar java.
>
> What does google prefer?
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
> wrote:
>>
>> Hi Josh,
>>
>> Any update you would like to share with me?
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> I have send you mail at adwordsa...@google.com.
>>> Please check it.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi,

 I have a send you a mail. Please check it.

 Thanks,
 Kainesh

 On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
 (AdWords API Team) wrote:
>
> Hi Kainesh,
>
> Could you share the code you're using that leads to this result? 
> You can send it *only to me* (if you'd prefer) by clicking *Reply 
> privately to author* on this post.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel 
> wrote:
>>
>> Hi Josh,
>>
>> Even I am trying  the same. But its pointing to null and even I 
>> tried mutateResult.getErrorList(), even that is null.
>>
>> Thanks,
>> Kainesh
>>
>> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh 
>> Patel wrote:
>>>
>>> I am trying to update keyword. However, after batch job status 
>>> is done, when I try to check the status of operand or error, noth 
>>> are 
>>> returning null.
>>>
>>> Batch Job Url is 
>>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZM

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Yes. I didn't got NoClassDefFoundError and xml parser didn't worked 
correctly. By any chance, it can be fixed by importing libraries and if 
yes, can you can include it in your jar?

Thanks,
Kainesh

On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff 
(AdWords API Team) wrote:
>
> Hi Kainesh,
>
> Those utilities should be present in any JRE. I think the issue you had 
> was that the particular JRE you were using had a bug that meant that the 
> XML wasn't being parsed properly. If it had been an issue with a missing 
> dependency, I think you would have seen a NoClassDefFoundError 
> 
>  
> instead.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> As you have mentioned, BatchJobHelper depends on XML utilities which may 
>> or may not be present in JRE. Can you file a ticket/bug or discuss with dev 
>> team to include this libraries in google adwords api jar?
>>
>> Thanks,
>> Kainesh
>>
>> On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
>> (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> I'm not an expert on the differences between those JREs, but I can tell 
>>> you that the *BatchJobHelper* relies heavily on the XML utilities 
>>> included in the JRE. It's possible that the older 1.6 JRE you were using 
>>> had issues in that space, which would explain why upgrading fixed the 
>>> problem for you.
>>>
>>> Cheers,
>>> Josh, AdWords API Team
>>>
>>> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel wrote:

 Hi Josh,

 As a temporary workaround, we have changed our java version from 

 java version "1.6.0_21"
 Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
 Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

 to

 java version "1.6.0_36"
 OpenJDK Runtime Environment (IcedTea6 1.13.8) 
 (6b36-1.13.8-0ubuntu1~12.04)
 OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)

 Since both of the versions have same major release and both are 64 
 bits, it looks strange why it is working with one java version and doesn't 
 in another?

 Can you share few differences between OpenJDK and HotStar java.

 What does google prefer?

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> Hi Josh,
>
> Any update you would like to share with me?
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
> wrote:
>>
>> Hi Josh,
>>
>> I have send you mail at adwordsa...@google.com.
>> Please check it.
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
>> wrote:
>>>
>>> Hi,
>>>
>>> I have a send you a mail. Please check it.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
>>> (AdWords API Team) wrote:

 Hi Kainesh,

 Could you share the code you're using that leads to this result? 
 You can send it *only to me* (if you'd prefer) by clicking *Reply 
 privately to author* on this post.

 Thanks,
 Josh, AdWords API Team

 On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel 
 wrote:
>
> Hi Josh,
>
> Even I am trying  the same. But its pointing to null and even I 
> tried mutateResult.getErrorList(), even that is null.
>
> Thanks,
> Kainesh
>
> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
> wrote:
>>
>> I am trying to update keyword. However, after batch job status is 
>> done, when I try to check the status of operand or error, noth are 
>> returning null.
>>
>> Batch Job Url is 
>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>
>> Please let me know which all information is required.
>>
>> Thanks,
>> Kainesh
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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...@google

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

Those utilities should be present in any JRE. I think the issue you had was 
that the particular JRE you were using had a bug that meant that the XML 
wasn't being parsed properly. If it had been an issue with a missing 
dependency, I think you would have seen a NoClassDefFoundError 
 
instead.

Thanks,
Josh, AdWords API Team

On Monday, December 21, 2015 at 10:06:21 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> As you have mentioned, BatchJobHelper depends on XML utilities which may 
> or may not be present in JRE. Can you file a ticket/bug or discuss with dev 
> team to include this libraries in google adwords api jar?
>
> Thanks,
> Kainesh
>
> On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> I'm not an expert on the differences between those JREs, but I can tell 
>> you that the *BatchJobHelper* relies heavily on the XML utilities 
>> included in the JRE. It's possible that the older 1.6 JRE you were using 
>> had issues in that space, which would explain why upgrading fixed the 
>> problem for you.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel wrote:
>>>
>>> Hi Josh,
>>>
>>> As a temporary workaround, we have changed our java version from 
>>>
>>> java version "1.6.0_21"
>>> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
>>> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>>>
>>> to
>>>
>>> java version "1.6.0_36"
>>> OpenJDK Runtime Environment (IcedTea6 1.13.8) 
>>> (6b36-1.13.8-0ubuntu1~12.04)
>>> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>>>
>>> Since both of the versions have same major release and both are 64 bits, 
>>> it looks strange why it is working with one java version and doesn't in 
>>> another?
>>>
>>> Can you share few differences between OpenJDK and HotStar java.
>>>
>>> What does google prefer?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi Josh,

 Any update you would like to share with me?

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> Hi Josh,
>
> I have send you mail at adwordsa...@google.com.
> Please check it.
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
> wrote:
>>
>> Hi,
>>
>> I have a send you a mail. Please check it.
>>
>> Thanks,
>> Kainesh
>>
>> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
>> (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> Could you share the code you're using that leads to this result? You 
>>> can send it *only to me* (if you'd prefer) by clicking *Reply 
>>> privately to author* on this post.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel 
>>> wrote:

 Hi Josh,

 Even I am trying  the same. But its pointing to null and even I 
 tried mutateResult.getErrorList(), even that is null.

 Thanks,
 Kainesh

 On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> I am trying to update keyword. However, after batch job status is 
> done, when I try to check the status of operand or error, noth are 
> returning null.
>
> Batch Job Url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>
> Please let me know which all information is required.
>
> Thanks,
> Kainesh
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh,

As you have mentioned, BatchJobHelper depends on XML utilities which may or 
may not be present in JRE. Can you file a ticket/bug or discuss with dev 
team to include this libraries in google adwords api jar?

Thanks,
Kainesh

On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh Radcliff 
(AdWords API Team) wrote:
>
> Hi Kainesh,
>
> I'm not an expert on the differences between those JREs, but I can tell 
> you that the *BatchJobHelper* relies heavily on the XML utilities 
> included in the JRE. It's possible that the older 1.6 JRE you were using 
> had issues in that space, which would explain why upgrading fixed the 
> problem for you.
>
> Cheers,
> Josh, AdWords API Team
>
> On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> As a temporary workaround, we have changed our java version from 
>>
>> java version "1.6.0_21"
>> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
>> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>>
>> to
>>
>> java version "1.6.0_36"
>> OpenJDK Runtime Environment (IcedTea6 1.13.8) (6b36-1.13.8-0ubuntu1~12.04)
>> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>>
>> Since both of the versions have same major release and both are 64 bits, 
>> it looks strange why it is working with one java version and doesn't in 
>> another?
>>
>> Can you share few differences between OpenJDK and HotStar java.
>>
>> What does google prefer?
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> Any update you would like to share with me?
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi Josh,

 I have send you mail at adwordsa...@google.com .
 Please check it.

 Thanks,
 Kainesh

 On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> Hi,
>
> I have a send you a mail. Please check it.
>
> Thanks,
> Kainesh
>
> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> Could you share the code you're using that leads to this result? You 
>> can send it *only to me* (if you'd prefer) by clicking *Reply 
>> privately to author* on this post.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel 
>> wrote:
>>>
>>> Hi Josh,
>>>
>>> Even I am trying  the same. But its pointing to null and even I 
>>> tried mutateResult.getErrorList(), even that is null.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 I am trying to update keyword. However, after batch job status is 
 done, when I try to check the status of operand or error, noth are 
 returning null.

 Batch Job Url is 
 https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q

 Please let me know which all information is required.

 Thanks,
 Kainesh

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/16431970-9181-4a14-b504-a98441ccd176%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-18 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

I'm not an expert on the differences between those JREs, but I can tell you 
that the *BatchJobHelper* relies heavily on the XML utilities included in 
the JRE. It's possible that the older 1.6 JRE you were using had issues in 
that space, which would explain why upgrading fixed the problem for you.

Cheers,
Josh, AdWords API Team

On Wednesday, November 18, 2015 at 8:10:56 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> As a temporary workaround, we have changed our java version from 
>
> java version "1.6.0_21"
> Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
> Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)
>
> to
>
> java version "1.6.0_36"
> OpenJDK Runtime Environment (IcedTea6 1.13.8) (6b36-1.13.8-0ubuntu1~12.04)
> OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
>
> Since both of the versions have same major release and both are 64 bits, 
> it looks strange why it is working with one java version and doesn't in 
> another?
>
> Can you share few differences between OpenJDK and HotStar java.
>
> What does google prefer?
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> Any update you would like to share with me?
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel wrote:
>>>
>>> Hi Josh,
>>>
>>> I have send you mail at adwordsapiadvi...@google.com.
>>> Please check it.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel 
>>> wrote:

 Hi,

 I have a send you a mail. Please check it.

 Thanks,
 Kainesh

 On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
 (AdWords API Team) wrote:
>
> Hi Kainesh,
>
> Could you share the code you're using that leads to this result? You 
> can send it *only to me* (if you'd prefer) by clicking *Reply 
> privately to author* on this post.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> Even I am trying  the same. But its pointing to null and even I tried 
>> mutateResult.getErrorList(), even that is null.
>>
>> Thanks,
>> Kainesh
>>
>> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
>> wrote:
>>>
>>> I am trying to update keyword. However, after batch job status is 
>>> done, when I try to check the status of operand or error, noth are 
>>> returning null.
>>>
>>> Batch Job Url is 
>>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>>
>>> Please let me know which all information is required.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7dc32094-fee4-4191-b791-7c6ca26c2275%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-18 Thread Kainesh Patel
Hi Josh,

As a temporary workaround, we have changed our java version from 

java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

to

java version "1.6.0_36"
OpenJDK Runtime Environment (IcedTea6 1.13.8) (6b36-1.13.8-0ubuntu1~12.04)
OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)

Since both of the versions have same major release and both are 64 bits, it 
looks strange why it is working with one java version and doesn't in 
another?

Can you share few differences between OpenJDK and HotStar java.

What does google prefer?

Thanks,
Kainesh

On Tuesday, November 17, 2015 at 10:43:30 PM UTC+5:30, Kainesh Patel wrote:
>
> Hi Josh,
>
> Any update you would like to share with me?
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> I have send you mail at adwordsapiadvi...@google.com.
>> Please check it.
>>
>> Thanks,
>> Kainesh
>>
>> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel wrote:
>>>
>>> Hi,
>>>
>>> I have a send you a mail. Please check it.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
>>> (AdWords API Team) wrote:

 Hi Kainesh,

 Could you share the code you're using that leads to this result? You 
 can send it *only to me* (if you'd prefer) by clicking *Reply 
 privately to author* on this post.

 Thanks,
 Josh, AdWords API Team

 On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> Even I am trying  the same. But its pointing to null and even I tried 
> mutateResult.getErrorList(), even that is null.
>
> Thanks,
> Kainesh
>
> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
> wrote:
>>
>> I am trying to update keyword. However, after batch job status is 
>> done, when I try to check the status of operand or error, noth are 
>> returning null.
>>
>> Batch Job Url is 
>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>
>> Please let me know which all information is required.
>>
>> Thanks,
>> Kainesh
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c7f0f862-9668-414f-b069-dc438e88a9b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-17 Thread Kainesh Patel
Hi Josh,

Any update you would like to share with me?

Thanks,
Kainesh

On Tuesday, November 17, 2015 at 7:17:48 PM UTC+5:30, Kainesh Patel wrote:
>
> Hi Josh,
>
> I have send you mail at adwordsapiadvi...@google.com.
> Please check it.
>
> Thanks,
> Kainesh
>
> On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel wrote:
>>
>> Hi,
>>
>> I have a send you a mail. Please check it.
>>
>> Thanks,
>> Kainesh
>>
>> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
>> (AdWords API Team) wrote:
>>>
>>> Hi Kainesh,
>>>
>>> Could you share the code you're using that leads to this result? You can 
>>> send it *only to me* (if you'd prefer) by clicking *Reply privately to 
>>> author* on this post.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:

 Hi Josh,

 Even I am trying  the same. But its pointing to null and even I tried 
 mutateResult.getErrorList(), even that is null.

 Thanks,
 Kainesh

 On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel 
 wrote:
>
> I am trying to update keyword. However, after batch job status is 
> done, when I try to check the status of operand or error, noth are 
> returning null.
>
> Batch Job Url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>
> Please let me know which all information is required.
>
> Thanks,
> Kainesh
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c405f6df-8a40-4132-9a33-70357b8981bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-17 Thread Kainesh Patel
Hi Josh,

I have send you mail at adwordsapiadvi...@google.com.
Please check it.

Thanks,
Kainesh

On Tuesday, November 17, 2015 at 6:15:27 PM UTC+5:30, Kainesh Patel wrote:
>
> Hi,
>
> I have a send you a mail. Please check it.
>
> Thanks,
> Kainesh
>
> On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
> (AdWords API Team) wrote:
>>
>> Hi Kainesh,
>>
>> Could you share the code you're using that leads to this result? You can 
>> send it *only to me* (if you'd prefer) by clicking *Reply privately to 
>> author* on this post.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:
>>>
>>> Hi Josh,
>>>
>>> Even I am trying  the same. But its pointing to null and even I tried 
>>> mutateResult.getErrorList(), even that is null.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:

 I am trying to update keyword. However, after batch job status is done, 
 when I try to check the status of operand or error, noth are returning 
 null.

 Batch Job Url is 
 https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q

 Please let me know which all information is required.

 Thanks,
 Kainesh

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b27bf533-627f-467d-90e4-dd47c68e35d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-17 Thread Kainesh Patel
Hi,

I have a send you a mail. Please check it.

Thanks,
Kainesh

On Monday, November 16, 2015 at 11:05:10 PM UTC+5:30, Josh Radcliff 
(AdWords API Team) wrote:
>
> Hi Kainesh,
>
> Could you share the code you're using that leads to this result? You can 
> send it *only to me* (if you'd prefer) by clicking *Reply privately to 
> author* on this post.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:
>>
>> Hi Josh,
>>
>> Even I am trying  the same. But its pointing to null and even I tried 
>> mutateResult.getErrorList(), even that is null.
>>
>> Thanks,
>> Kainesh
>>
>> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>>>
>>> I am trying to update keyword. However, after batch job status is done, 
>>> when I try to check the status of operand or error, noth are returning null.
>>>
>>> Batch Job Url is 
>>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>>
>>> Please let me know which all information is required.
>>>
>>> Thanks,
>>> Kainesh
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5bf67e59-6361-4a79-9f5e-1eea37e3e01a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-16 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

Could you share the code you're using that leads to this result? You can 
send it *only to me* (if you'd prefer) by clicking *Reply privately to 
author* on this post.

Thanks,
Josh, AdWords API Team

On Monday, November 16, 2015 at 11:45:03 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> Even I am trying  the same. But its pointing to null and even I tried 
> mutateResult.getErrorList(), even that is null.
>
> Thanks,
> Kainesh
>
> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>>
>> I am trying to update keyword. However, after batch job status is done, 
>> when I try to check the status of operand or error, noth are returning null.
>>
>> Batch Job Url is 
>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>
>> Please let me know which all information is required.
>>
>> Thanks,
>> Kainesh
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b919ed99-1b10-4a76-a685-61d3c85a9f99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-16 Thread Kainesh Patel
Hi Josh,

Even I am trying  the same. But its pointing to null and even I tried 
mutateResult.getErrorList(), even that is null.

Thanks,
Kainesh

On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>
> I am trying to update keyword. However, after batch job status is done, 
> when I try to check the status of operand or error, noth are returning null.
>
> Batch Job Url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>
> Please let me know which all information is required.
>
> Thanks,
> Kainesh
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/59ed26b6-5c2c-4267-b964-ef5798962274%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-16 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh,

The method call in the Java library to get the operand is 
*mutateResult.getOperand()*. I just tried this out locally and it worked as 
expected. Please give that a shot and let me know how it goes.

Thanks,
Josh, AdWords API Team

On Monday, November 16, 2015 at 10:56:44 AM UTC-5, Kainesh Patel wrote:
>
> Hi Josh,
>
> I am using Java client library v201509(which Google provided). As per java 
> client, to fetch operand call is mutateResult[index].getOperand() and to 
> getErrorList, call is mutateResult[index].getErrorList(). However, both are 
> null and operation was successful.
>
> As per xsd schema file, to fetch operand the call should have been 
> mutateResult[index].getResult() which is not there in java file.
>
> The mutateResult which I have referred earlier is  obtained by 
> using mutateResponse.getMutateResults().
>
> The same used to work earlier. Am I making mistake somewhere?
>
> Thanks,
> Kainesh
>
> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>>
>> I am trying to update keyword. However, after batch job status is done, 
>> when I try to check the status of operand or error, noth are returning null.
>>
>> Batch Job Url is 
>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>
>> Please let me know which all information is required.
>>
>> Thanks,
>> Kainesh
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/56ed94f4-2979-40d2-9654-ed08acccb4d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-16 Thread Kainesh Patel
Hi Josh,

I am using Java client library v201509(which Google provided). As per java 
client, to fetch operand call is mutateResult[index].getOperand() and to 
getErrorList, call is mutateResult[index].getErrorList(). However, both are 
null and operation was successful.

As per xsd schema file, to fetch operand the call should have been 
mutateResult[index].getResult() which is not there in java file.

The mutateResult which I have referred earlier is  obtained by 
using mutateResponse.getMutateResults().

The same used to work earlier. Am I making mistake somewhere?

Thanks,
Kainesh

On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>
> I am trying to update keyword. However, after batch job status is done, 
> when I try to check the status of operand or error, noth are returning null.
>
> Batch Job Url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>
> Please let me know which all information is required.
>
> Thanks,
> Kainesh
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cfc7b739-f7a6-469c-90db-b4a4459ab671%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-16 Thread Josh Radcliff (AdWords API Team)
Hi,

As specified in the BatchJobOps.xsd schema 
, 
the *operand* will appear under:

mutateResponse/rval/result/

See the section of the XSD with:


  



  


By the way, are you using the utility supplied in the client library as 
shown in the examples 
?
 
It should make uploading operations and processing results much easier.

Thanks,
Josh, AdWords API Team

On Monday, November 16, 2015 at 1:54:05 AM UTC-5, Kainesh Patel wrote:
>
> Hi,
>
> I have tried it again to update the keyword.
> The upload url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Up_VY07DdvDGBLfE8JYl0AF5VnPO5yVDwaIpLDbmKYmX4Umd-TJLCLwY3KUlaGIn_yWsA0Q9zpLkfw9zP5kkHUHXHBbrA
>  
> .
>
> The xml file after the job is completed is attached with this mail.
> However, when I try to do mutateresult[0].getOperand() or 
> mutateResult[0].getErrorList(), I am getting both as null. 
>
> The code used to work, however it is failing now. 
>
> Can you please check into this on priority basis?
>
> Thanks,
> Kainesh
>
> On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>>
>> I am trying to update keyword. However, after batch job status is done, 
>> when I try to check the status of operand or error, noth are returning null.
>>
>> Batch Job Url is 
>> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>>
>> Please let me know which all information is required.
>>
>> Thanks,
>> Kainesh
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5f777956-7992-44d3-b7fc-7e0006322e37%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-15 Thread Kainesh Patel
Hi,

I have tried it again to update the keyword.
The upload url 
is 
https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Up_VY07DdvDGBLfE8JYl0AF5VnPO5yVDwaIpLDbmKYmX4Umd-TJLCLwY3KUlaGIn_yWsA0Q9zpLkfw9zP5kkHUHXHBbrA
 
.

The xml file after the job is completed is attached with this mail.
However, when I try to do mutateresult[0].getOperand() or 
mutateResult[0].getErrorList(), I am getting both as null. 

The code used to work, however it is failing now. 

Can you please check into this on priority basis?

Thanks,
Kainesh

On Friday, November 13, 2015 at 7:19:49 PM UTC+5:30, Kainesh Patel wrote:
>
> I am trying to update keyword. However, after batch job status is done, 
> when I try to check the status of operand or error, noth are returning null.
>
> Batch Job Url is 
> https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q
>
> Please let me know which all information is required.
>
> Thanks,
> Kainesh
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d9de2ce5-f5ef-4736-8499-ade03796052b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


1072525.results.xml
Description: XML document


Re: batch job service giving operand and error message both as null

2015-11-13 Thread Kainesh Patel
Hi Umesh,

The job status is complete. And as per the guide, I am trying to fetch 
error or operand. But both are getting as null.

Did the batch job url I shared helped you anyway?

Thanks,
Kainesh

On Friday, November 13, 2015 at 10:44:15 PM UTC+5:30, Umesh Dengale wrote:
>
> Hi Kainesh,
>
> When BatchJob completes, it will have CANCELED or DONE status. If job 
> status is CANCELED then inspect the list of processingErrors 
> 
>  on 
> the batch job and download the results for any successfully parsed 
> operations from the batch job's downloadUrl 
> .
>  
> Please check download the batch job results and check for errors 
> 
>  section 
> of the batch processing guide 
> .
>
> Regards,
> Umesh, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/27c2e77c-49c7-4967-8680-e68498014c1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: batch job service giving operand and error message both as null

2015-11-13 Thread Umesh Dengale
Hi Kainesh,

When BatchJob completes, it will have CANCELED or DONE status. If job 
status is CANCELED then inspect the list of processingErrors 

 on 
the batch job and download the results for any successfully parsed 
operations from the batch job's downloadUrl 
.
 
Please check download the batch job results and check for errors 

 section 
of the batch processing guide 
.

Regards,
Umesh, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9bf1518e-a7b3-4509-812f-a565097b8464%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


batch job service giving operand and error message both as null

2015-11-13 Thread Kainesh Patel
I am trying to update keyword. However, after batch job status is done, 
when I try to check the status of operand or error, noth are returning null.

Batch Job Url 
is 
https://www.googleapis.com/upload/storage/v1/b/batch-job-upload-prod-ebe9b43/o?uploadType=resumable&upload_id=AEnB2Uq7yXKGBpTcZMIR_Iwiv3nESXWE_vVmvUcZ3xdRH-xt580wPBP7AjJh139EKWgUUU28Qjn2RUrE1jGBWir1bHdrPQh30Q

Please let me know which all information is required.

Thanks,
Kainesh

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1cf2cb32-d922-4727-ac05-b3a33cc42851%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.