[google-appengine] SSL configuration issue (GAE/Java)

2013-05-25 Thread Mike Dougherty

I'm having a little trouble getting SSL to work correctly with my Java 
application. I've configured it according to the information found here:

https://developers.google.com/appengine/docs/java/config/webxml#Secure_URLs

And it appears to work, however it is requiring the user login with a 
Google account before redirecting back to the SSL URL. How in the world do 
I configure this application to force SSL without requiring the user be 
logged in to a Google Account? 

Thanks,
Mike

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: SSL configuration issue (GAE/Java)

2013-05-25 Thread Mike Dougherty
Hey Thomas,

Thank you for the reply. I could have sworn I had configured an app in the 
past, via the web.xml to use SSL (without login), but I must be remembering 
wrong. I will add a simple redirect in my application code as you suggest. 

Thanks,
Mike


On Sunday, May 26, 2013 6:34:09 AM UTC+3, Thomas Wiradikusuma wrote:

 Hi Mike,

 SSL for MYAPP.appspot.com is automatic, you don't need to do anything 
 (just open https://MYAPP.appspot.com). For custom domain (e.g. MYAPP.com) 
 the doc is https://developers.google.com/appengine/docs/ssl. For both 
 cases, to force user to use https, handle in your code (e.g. if 
 request.notsecure then redirect to https version of the same URL).

 The link you gave is about securing url with Google Account (or whatever 
 you specify in Authentication Type in Application Settings in control 
 panel).


 Regards,
 Thomas Wiradikusuma



 On Sunday, 26 May 2013 04:06:55 UTC+8, Mike Dougherty wrote:


 I'm having a little trouble getting SSL to work correctly with my Java 
 application. I've configured it according to the information found here:


 https://developers.google.com/appengine/docs/java/config/webxml#Secure_URLs

 And it appears to work, however it is requiring the user login with a 
 Google account before redirecting back to the SSL URL. How in the world do 
 I configure this application to force SSL without requiring the user be 
 logged in to a Google Account? 

 Thanks,
 Mike



-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Search API over quota

2013-04-16 Thread Mike Dougherty
OK, now that my quota has been reset, I can see things a bit more clearly. 
It seems the count for API calls is a bit more aggressive than I originally 
thought. My code just indexed 88 documents and accumulated about 1,200 of 
the 20,000 allotted calls. 

Document.Builder builder = Document.newBuilder();
builder.setId(id);
builder.addField(Field.newBuilder().setName(name).setText(name));
builder.addField(Field.newBuilder().setName(description).setText(description));
Document document = builder.build();
PutResponse putResponse = index.put(document);

Is that a total of 12 API calls or just 1? 

Thanks,
Mike



On Monday, April 15, 2013 12:13:30 PM UTC+3, Mike Dougherty wrote:

 Hello,

 I am using the Search API for an application. I understand that it is 
 limited to 20,000 calls per 24 hours on a free application. But I expected 
 that limit to not be a hard limit once we are using a paid application. How 
 do I remove this limit? 

 Also, it seems that the limit was not reset when the other quotas were 
 reset this morning. I am pretty confident that my application has not made 
 20,000 calls in the last 2 hours. 

 Thanks,
 Mike

  

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Search API over quota

2013-04-15 Thread Mike Dougherty
Hello,

I am using the Search API for an application. I understand that it is
limited to 20,000 calls per 24 hours on a free application. But I expected
that limit to not be a hard limit once we are using a paid application. How
do I remove this limit?

Also, it seems that the limit was not reset when the other quotas were
reset this morning. I am pretty confident that my application has not made
20,000 calls in the last 2 hours.

Thanks,
Mike


-- 

*Michael J. Dougherty*
___
858.232.3635 - USA
054.445.1345 - Israel
mi...@threedev.com mi...@threedev.com
http://ThreeDev.com

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] /_ah/adminconsole

2012-07-24 Thread Mike Dougherty
This is driving me crazy. The local dev server has suddenly started 
redirecting 
http://localhost:8080/_ah/adminhttp://localhost:8080/_ah/adminconsole?subsection=datastoreviewer
 to http://localhost:8080/_ah/adminconsole?subsection=datastoreviewer for 
some unknown reason. I have nothing in my web.xml specifying this redirect. 
Nothing in my appengine-web.xml file that would indicate a need for this 
redirect. I can't find anything anywhere in either my application or in 
Google App Engine code. Yet, the development server continues to redirect 
all requests for the admin console to this address. I'm very, very puzzled 
by this. Any insights would be greatly appreciated. 

Thanks,
Mike

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/msdIiHauQiwJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.