Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-19 Thread goingdev
Thank you for your help.

On Tuesday, April 19, 2016 at 2:02:44 PM UTC-4, Nadine Sundquist (AdWords 
API Team) wrote:
>
> Greetings!
>
> It's good to hear that you're now getting results back. As for the results 
> running out of memory, the utility just retrieves the entire result from 
> the URL. It isn't streamed or broken down into smaller chunks. If you find 
> the result is too large, you have a couple of options:
>
>- Increase the amount of memory on your system that your process is 
>allowed to use.
>- Decrease the number of operations per batch job, since you wouldn't 
>be able to handle the size of the results.
>
> For the future, you could also file an issue on GitHub 
>  to add the 
> feature of streaming results. 
>
> Cheers,
> Nadine, AdWords API Team
>
> On Tuesday, April 19, 2016 at 1:16:58 PM UTC-4, goingdev wrote:
>>
>> Thank you for that... I tried excluding the predicates and I didn't get 
>> any results. I realized I wasn't passing in the correct client customer ID. 
>> I'm able to retrieve the job now.
>>
>> I'm having another issue now with downloading the results. It's giving an 
>> "out of memory exception" on this line:
>>
>> BatchJobMutateResponse mutateResponse = 
>> batchJobUploadHelper.Download(batchJob.downloadUrl.url);
>>
>> Does the API not handle large jobs? Should I be batching them like I have 
>> been the MutateJobService?
>>
>>
>> On Tuesday, April 19, 2016 at 12:04:17 PM UTC-4, Nadine Sundquist 
>> (AdWords API Team) wrote:
>>>
>>> Hello,
>>>
>>> It sounds like you're working your way through our Batch Processing 
>>> guide  
>>> for your migration. I have a few questions to ask to help you troubleshoot:
>>>
>>>- Are you using the batch job utility provided by the client library 
>>>to upload your operations?
>>>- Have you tried calling just BatchJobSerice.get() 
>>>
>>> 
>>>  without 
>>>predicates to see if your job appears?
>>>- How are you getting the batch job ID? Are you getting it from the 
>>>BatchJob.id 
>>>
>>> 
>>> field?
>>>
>>> Regards,
>>> Nadine, AdWords API Team
>>>
>>> On Tuesday, April 19, 2016 at 11:39:01 AM UTC-4, goingdev wrote:

 How do I troubleshoot this?   I'm trying to migrate to BatchJobService 
 but cannot do so if I cannot retrieve job results reliably.

 On Monday, April 18, 2016 at 4:28:56 PM UTC-4, goingdev wrote:
>
> I'm getting this for a few job IDs
>
> Request:
> 
> http://schemas.xmlsoap.org/soap/envelope/; 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd="
> http://www.w3.org/2001/XMLSchema;>
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   https://adwords.google.com/api/adwords/cm/v201601;>x
>   https://adwords.google.com/api/adwords/cm/v201601
> ">x
>   https://adwords.google.com/api/adwords/cm/v201601;>x
> 
>   
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   
> Id
> Status
> DownloadUrl
> ProcessingErrors
> ProgressStats
> 
>   Id
>   EQUALS
>   86004965
> 
>   
> 
>   
> 
>
> Response:
> http://schemas.xmlsoap.org/soap/envelope/;>
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   000530c82fda85e00ac13c16640092ee
>   BatchJobService
>   get
>   1
>   424
> 
>   
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   
> 0
> BatchJobPage
>   
> 
>   
> 
>
>
>
> On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:
>>
>> Hi, 
>>
>> Do you have the SOAP request and response logs for this job? Pleaase 
>> click *Reply privately to author* in the forum when responding. 
>>
>> Thanks,
>> Yin, 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 

Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-19 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Greetings!

It's good to hear that you're now getting results back. As for the results 
running out of memory, the utility just retrieves the entire result from 
the URL. It isn't streamed or broken down into smaller chunks. If you find 
the result is too large, you have a couple of options:

   - Increase the amount of memory on your system that your process is 
   allowed to use.
   - Decrease the number of operations per batch job, since you wouldn't be 
   able to handle the size of the results.

For the future, you could also file an issue on GitHub 
 to add the 
feature of streaming results. 

Cheers,
Nadine, AdWords API Team

On Tuesday, April 19, 2016 at 1:16:58 PM UTC-4, goingdev wrote:
>
> Thank you for that... I tried excluding the predicates and I didn't get 
> any results. I realized I wasn't passing in the correct client customer ID. 
> I'm able to retrieve the job now.
>
> I'm having another issue now with downloading the results. It's giving an 
> "out of memory exception" on this line:
>
> BatchJobMutateResponse mutateResponse = 
> batchJobUploadHelper.Download(batchJob.downloadUrl.url);
>
> Does the API not handle large jobs? Should I be batching them like I have 
> been the MutateJobService?
>
>
> On Tuesday, April 19, 2016 at 12:04:17 PM UTC-4, Nadine Sundquist (AdWords 
> API Team) wrote:
>>
>> Hello,
>>
>> It sounds like you're working your way through our Batch Processing guide 
>>  for 
>> your migration. I have a few questions to ask to help you troubleshoot:
>>
>>- Are you using the batch job utility provided by the client library 
>>to upload your operations?
>>- Have you tried calling just BatchJobSerice.get() 
>>
>> 
>>  without 
>>predicates to see if your job appears?
>>- How are you getting the batch job ID? Are you getting it from the 
>>BatchJob.id 
>>
>> 
>> field?
>>
>> Regards,
>> Nadine, AdWords API Team
>>
>> On Tuesday, April 19, 2016 at 11:39:01 AM UTC-4, goingdev wrote:
>>>
>>> How do I troubleshoot this?   I'm trying to migrate to BatchJobService 
>>> but cannot do so if I cannot retrieve job results reliably.
>>>
>>> On Monday, April 18, 2016 at 4:28:56 PM UTC-4, goingdev wrote:

 I'm getting this for a few job IDs

 Request:
 
 http://schemas.xmlsoap.org/soap/envelope/; 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd="
 http://www.w3.org/2001/XMLSchema;>
   
 https://adwords.google.com/api/adwords/cm/v201601;>
   https://adwords.google.com/api/adwords/cm/v201601;>x
   https://adwords.google.com/api/adwords/cm/v201601;>x
   https://adwords.google.com/api/adwords/cm/v201601;>x
 
   
   
 https://adwords.google.com/api/adwords/cm/v201601;>
   
 Id
 Status
 DownloadUrl
 ProcessingErrors
 ProgressStats
 
   Id
   EQUALS
   86004965
 
   
 
   
 

 Response:
 http://schemas.xmlsoap.org/soap/envelope/;>
   
 https://adwords.google.com/api/adwords/cm/v201601;>
   000530c82fda85e00ac13c16640092ee
   BatchJobService
   get
   1
   424
 
   
   
 https://adwords.google.com/api/adwords/cm/v201601;>
   
 0
 BatchJobPage
   
 
   
 



 On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:
>
> Hi, 
>
> Do you have the SOAP request and response logs for this job? Pleaase 
> click *Reply privately to author* in the forum when responding. 
>
> Thanks,
> Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 

Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-19 Thread goingdev
Thank you for that... I tried excluding the predicates and I didn't get any 
results. I realized I wasn't passing in the correct client customer ID. I'm 
able to retrieve the job now.

I'm having another issue now with downloading the results. It's giving an 
"out of memory exception" on this line:

BatchJobMutateResponse mutateResponse = 
batchJobUploadHelper.Download(batchJob.downloadUrl.url);

Does the API not handle large jobs? Should I be batching them like I have 
been the MutateJobService?


On Tuesday, April 19, 2016 at 12:04:17 PM UTC-4, Nadine Sundquist (AdWords 
API Team) wrote:
>
> Hello,
>
> It sounds like you're working your way through our Batch Processing guide 
>  for 
> your migration. I have a few questions to ask to help you troubleshoot:
>
>- Are you using the batch job utility provided by the client library 
>to upload your operations?
>- Have you tried calling just BatchJobSerice.get() 
>
> 
>  without 
>predicates to see if your job appears?
>- How are you getting the batch job ID? Are you getting it from the 
>BatchJob.id 
>
> 
> field?
>
> Regards,
> Nadine, AdWords API Team
>
> On Tuesday, April 19, 2016 at 11:39:01 AM UTC-4, goingdev wrote:
>>
>> How do I troubleshoot this?   I'm trying to migrate to BatchJobService 
>> but cannot do so if I cannot retrieve job results reliably.
>>
>> On Monday, April 18, 2016 at 4:28:56 PM UTC-4, goingdev wrote:
>>>
>>> I'm getting this for a few job IDs
>>>
>>> Request:
>>> 
>>> http://schemas.xmlsoap.org/soap/envelope/; 
>>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd="
>>> http://www.w3.org/2001/XMLSchema;>
>>>   
>>> https://adwords.google.com/api/adwords/cm/v201601;>
>>>   https://adwords.google.com/api/adwords/cm/v201601;>x
>>>   https://adwords.google.com/api/adwords/cm/v201601;>x
>>>   https://adwords.google.com/api/adwords/cm/v201601;>x
>>> 
>>>   
>>>   
>>> https://adwords.google.com/api/adwords/cm/v201601;>
>>>   
>>> Id
>>> Status
>>> DownloadUrl
>>> ProcessingErrors
>>> ProgressStats
>>> 
>>>   Id
>>>   EQUALS
>>>   86004965
>>> 
>>>   
>>> 
>>>   
>>> 
>>>
>>> Response:
>>> http://schemas.xmlsoap.org/soap/envelope/;>
>>>   
>>> https://adwords.google.com/api/adwords/cm/v201601;>
>>>   000530c82fda85e00ac13c16640092ee
>>>   BatchJobService
>>>   get
>>>   1
>>>   424
>>> 
>>>   
>>>   
>>> https://adwords.google.com/api/adwords/cm/v201601;>
>>>   
>>> 0
>>> BatchJobPage
>>>   
>>> 
>>>   
>>> 
>>>
>>>
>>>
>>> On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:

 Hi, 

 Do you have the SOAP request and response logs for this job? Pleaase 
 click *Reply privately to author* in the forum when responding. 

 Thanks,
 Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f8301319-5edb-4220-bfe4-a1be664eb08b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-19 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Hello,

It sounds like you're working your way through our Batch Processing guide 
 for your 
migration. I have a few questions to ask to help you troubleshoot:

   - Are you using the batch job utility provided by the client library to 
   upload your operations?
   - Have you tried calling just BatchJobSerice.get() 
   

 without 
   predicates to see if your job appears?
   - How are you getting the batch job ID? Are you getting it from the 
   BatchJob.id 
   

field?

Regards,
Nadine, AdWords API Team

On Tuesday, April 19, 2016 at 11:39:01 AM UTC-4, goingdev wrote:
>
> How do I troubleshoot this?   I'm trying to migrate to BatchJobService but 
> cannot do so if I cannot retrieve job results reliably.
>
> On Monday, April 18, 2016 at 4:28:56 PM UTC-4, goingdev wrote:
>>
>> I'm getting this for a few job IDs
>>
>> Request:
>> 
>> http://schemas.xmlsoap.org/soap/envelope/; 
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd="
>> http://www.w3.org/2001/XMLSchema;>
>>   
>> https://adwords.google.com/api/adwords/cm/v201601;>
>>   https://adwords.google.com/api/adwords/cm/v201601;>x
>>   https://adwords.google.com/api/adwords/cm/v201601;>x
>>   https://adwords.google.com/api/adwords/cm/v201601
>> ">x
>> 
>>   
>>   
>> https://adwords.google.com/api/adwords/cm/v201601;>
>>   
>> Id
>> Status
>> DownloadUrl
>> ProcessingErrors
>> ProgressStats
>> 
>>   Id
>>   EQUALS
>>   86004965
>> 
>>   
>> 
>>   
>> 
>>
>> Response:
>> http://schemas.xmlsoap.org/soap/envelope/;>
>>   
>> https://adwords.google.com/api/adwords/cm/v201601;>
>>   000530c82fda85e00ac13c16640092ee
>>   BatchJobService
>>   get
>>   1
>>   424
>> 
>>   
>>   
>> https://adwords.google.com/api/adwords/cm/v201601
>> ">
>>   
>> 0
>> BatchJobPage
>>   
>> 
>>   
>> 
>>
>>
>>
>> On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:
>>>
>>> Hi, 
>>>
>>> Do you have the SOAP request and response logs for this job? Pleaase 
>>> click *Reply privately to author* in the forum when responding. 
>>>
>>> Thanks,
>>> Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dfb3c800-5cf7-4347-87be-ed9cef27b923%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-19 Thread goingdev
How do I troubleshoot this?   I'm trying to migrate to BatchJobService but 
cannot do so if I cannot retrieve job results reliably.

On Monday, April 18, 2016 at 4:28:56 PM UTC-4, goingdev wrote:
>
> I'm getting this for a few job IDs
>
> Request:
> 
> http://schemas.xmlsoap.org/soap/envelope/; 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd="
> http://www.w3.org/2001/XMLSchema;>
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   https://adwords.google.com/api/adwords/cm/v201601;>x
>   https://adwords.google.com/api/adwords/cm/v201601;>x
>   https://adwords.google.com/api/adwords/cm/v201601
> ">x
> 
>   
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   
> Id
> Status
> DownloadUrl
> ProcessingErrors
> ProgressStats
> 
>   Id
>   EQUALS
>   86004965
> 
>   
> 
>   
> 
>
> Response:
> http://schemas.xmlsoap.org/soap/envelope/;>
>   
> https://adwords.google.com/api/adwords/cm/v201601;>
>   000530c82fda85e00ac13c16640092ee
>   BatchJobService
>   get
>   1
>   424
> 
>   
>   
> https://adwords.google.com/api/adwords/cm/v201601
> ">
>   
> 0
> BatchJobPage
>   
> 
>   
> 
>
>
>
> On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:
>>
>> Hi, 
>>
>> Do you have the SOAP request and response logs for this job? Pleaase 
>> click *Reply privately to author* in the forum when responding. 
>>
>> Thanks,
>> Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c576363e-6d93-499e-9462-1cb805cdb136%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-18 Thread goingdev
I'm getting this for a few job IDs

Request:

http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema;>
  
https://adwords.google.com/api/adwords/cm/v201601;>
  https://adwords.google.com/api/adwords/cm/v201601;>x
  https://adwords.google.com/api/adwords/cm/v201601;>x
  https://adwords.google.com/api/adwords/cm/v201601;>x

  
  
https://adwords.google.com/api/adwords/cm/v201601;>
  
Id
Status
DownloadUrl
ProcessingErrors
ProgressStats

  Id
  EQUALS
  86004965

  

  


Response:
http://schemas.xmlsoap.org/soap/envelope/;>
  
https://adwords.google.com/api/adwords/cm/v201601;>
  000530c82fda85e00ac13c16640092ee
  BatchJobService
  get
  1
  424

  
  
https://adwords.google.com/api/adwords/cm/v201601;>
  
0
BatchJobPage
  

  




On Friday, April 15, 2016 at 3:30:59 PM UTC-4, Yin Niu wrote:
>
> Hi, 
>
> Do you have the SOAP request and response logs for this job? Pleaase click 
> *Reply 
> privately to author* in the forum when responding. 
>
> Thanks,
> Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/db124e98-928b-4d81-9570-5b311966cbbc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-15 Thread 'Yin Niu' via AdWords API Forum
Hi, 

Do you have the SOAP request and response logs for this job? Pleaase click 
*Reply 
privately to author* in the forum when responding. 

Thanks,
Yin, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5a9a1efd-7ec9-425f-a640-c8f0c0ac9ace%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Retrieving BatchJob by ID returns no BatchJobPage entries

2016-04-15 Thread goingdev
I'm getting 0 entries returned when using the BatchJobService to retrieve a 
job by its ID. My code:

Selector selector = new Selector()
{
fields = new string[] 
{ 
BatchJob.Fields.Id, BatchJob.Fields.Status,
BatchJob.Fields.DownloadUrl, 
BatchJob.Fields.ProcessingErrors,
BatchJob.Fields.ProgressStats 
},
predicates = new Predicate[] {
Predicate.Equals(BatchJob.Fields.Id, jobID)
}
};
BatchJobService batchJobService = 
(BatchJobService)user.GetService(AdWordsService.v201601.BatchJobService);
var batchJobPage = batchJobService.get(selector);

batchJobPage gives 0 entries. How can  I troubleshoot this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/283ca5fc-b162-4453-9e05-69add5fd6d99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.