[google-appengine] Re: Issue with a new SSL Cert (You must verify ownership of this certificate's domain(s)in order to upload it)

2016-09-16 Thread Huy Nguyen
Hi Stephan,

My problem similar, 
My root domain *my_domain.com* *NOT* in GAE, sub domain *sub.my_domain.com* 
deployed in GAE
I added ssl certificate of namecheap for all subdomain but not success and 
message alert same you,

You have solved it yet. There are suggestions for me ?

Thanks you,

On Wednesday, September 7, 2016 at 8:18:26 PM UTC+7, Stephan Schultz wrote:
>
> I'm having the same issue right now. I followed the instructions 
> 
>  but 
> neither the technical support from namecheap nor I was able to get it to 
> work.
>
>- I added the custom domains for example.com and ww.example.com
>- I obtained a certificate for example.com
>- I loaded the concatenated .crt files
>- I loaded the private key
>- I get "You must verify ownership of this certificate's domain(s)in 
>order to upload it."
>
> I used the Certificate & Private Key / CSR Matcher 
>  and it is valid, but only for the 
> example_com.crt file, not for the concatenated concat.crt file.
> I'm out of ideas, please let me know what alse I could try.
>
> On Thursday, April 7, 2016 at 3:44:05 PM UTC+2, Raphael Savina wrote:
>>
>> Hi all,
>>
>> I'm trying to add HTTPS to an app but I'm stuck at the Upload cert page 
>> with the following:
>> You must verify ownership of this certificate's domain(s)in order to 
>> upload it.
>>
>> This is the message:
>>
>>
>>
>> 
>>
>>
>> Now, the domain (www) is already listed under Custom Domains:
>>
>>
>>
>> 
>>  and the HTTP version of the app is working just fine.
>> My cert and key passed all he text from this page (what I followed):
>>
>> https://cloud.google.com/appengine/docs/python/console/using-custom-domains-and-ssl#adding_ssl_to_your_custom_domain
>>
>> The only 2 things I'm not sure about are:
>> -the ownership was before part of my Google Apps, now moved to the cloud 
>> console but I still can see the warning message:
>> "The custom domain feature has been migrated here from Google Apps. To 
>> get started, verify ownership of your domains by completing step 1 here."
>> -the cert is for www and without www but I have just www verified, would 
>> that be the issue?
>>
>> Thank in advance for pointers or any advice!
>> Raphael
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a4929f9f-ed76-434b-8647-198768aba7ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] AppEngine request connection refused

2016-09-01 Thread Huy Nguyen Quang
I have issue for request to project on GAE,

My customer request to website with error *connection refused* as picture 
attacked, this problem only occurs with some ISP in my country (only 
happens with a particular region).. 
I called them and restart their network.. connection to normal...

What happens ? I can not tell my customer call ISP...

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/fd0a4d88-7dee-4f74-a6d8-df15b1a7a896%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Need Index Quota Reset

2013-07-11 Thread Lại Huy Thịnh
I have an app that's giving me a Number Indexes Exceeds Quota message. 

My understanding is that vacuumed indexes are not automatically 
credited back. 

Can someone at Google reset my accounting?  Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[appengine-java] Re: Does the local unit test framework use the same datastore-indexes.xml file as the app?

2010-12-15 Thread Huy
Also, a coworker was able to consistently generate a missing index exception 
from a local unit test, but I couldn't reproduce using the same code, so it 
doesn't seem we can rely on this mechanism to test our indexes until we 
figure out what's happening here.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] CPU time obtained via QuotaService much lower than CPU time reported in request logs

2010-12-14 Thread Huy
My app is giving me warnings about my CPU usage, and I tried using the 
QuotaService functions to profile the code, but the numbers I get back are 
about a magnitude lower than the number that shows up in the request log.

I called QuotaService.getCpuTimeInMegacycles() at the beginning and end of 
doPost() and I'll get like 146ms vs 1058cpu_ms in the request logs.

What's going on here?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Does the local unit test framework use the same datastore-indexes.xml file as the app?

2010-12-14 Thread Huy
I'm trying to use unit tests to check for missing indexes, but it seems that 
with autoGenerate=false, I see exceptions when I execute certain queries 
in the app, but my unit tests that execute the same queries pass just fine. 
 What am I missing here?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] appcfg.sh --append duplicates logs

2010-12-06 Thread Huy
Repeatedly running the following command:


path to app engine SDK/bin/appcfg.sh --append request_logs path to
app my_logs.txt


duplicates the logs rather than appending new logs since the last fetch
as indicated by the documentation.


Furthermore, the logs appear in reverse-chronological order, so it
seems like periodic appends would be somewhat nonsensical.


Anyone have experience downloading the App Engine request/message logs
using the Java SDK? Am I using the command properly?


Please help,


Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.