[appengine-java] Manage local datastore

2010-05-13 Thread rmurta
Hello,
Is there any tool to manage(create, delete, query) data in your local
datastore? I know we have a page in the appengine dashboard to manage
the data but not in our local :(.

Thank you

-- 
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] End-To-End Testing on Local Server

2010-05-13 Thread Miroslav Genov

Hello,
I was wondering how end-to-end tests are isolated on local server. When 
SQL database server is used, there is no problem from test code to 
perform insert and delete operations from test case but how this could 
be done on GAE when binary file is used to hold the persistence state of 
the datastore ?


One possible solution would be creation of custom testing servlets that 
could execute some insert/delete operations. The test class could call 
any of this servlets to restore datastore to it's previous state. I 
don't know where this is a good approach for such tests.


Another option could be deploying of test classes along with production 
code on the local server and running test suite via some kind of testing 
page/servlet and etc. The problem with this approach for me is that TDD 
will cost me a lot of time, due the fact that when I change some part of 
my test, I have to redeploy the whole application again.



Here is a small snippet that is showing for what I'm talking about:

...
 private LoginPage loginPage;
 private InvoicePage invoicePage;

@Before
public void before() {
   databaseCleaner.cleanEntities();
   driver = new FirefoxDriver();
   loginPage = new LoginPage(driver);
   invoicePage = new InvoicePage(driver);
}

@Test
public void testCreateNewInvoice() {
  loginPage.loginWithDefaultCredentials();
  //given empty invoice
  invoicePage.enter();
  // when
  
invoicePage.enterInvoice(newInvoice(123).addItem(newItem(1,1,2.30,My 
First Item)).build());

  invoicePage.saveInvoce();


  //then database should contain entered invoice and the invoice should 
be added to the invoices table

  assertDatabaseContainsInvoice(123);
  assertDatabaseContainsInvoceWithItem(My First Item);
  invoicePage.containsInvoice(123);
}


Regards,
  Miroslav




Regards,
  Miroslav

--
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] 620 GeoCode Error

2010-05-13 Thread Damnjan
Hello,

I'm getting 620 error whenever I try to geocode.
I think problem appears to be related with IP address, since i can get
a successful 200
response if i try to connect to the URL from my pc.
I read that requests per day per Maps API should not be over 15,000.
And i meet that condition, because i don't have more then 1000 request
per day
My API KEY is
ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
web service is on http://www.dyepaintball.com/locator/

Best Regards,
Damnjan.

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



Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Ikai L (Google)
What's your application ID? Also, I see a lot of calls coming from many
different IP addresses with your key. Is this key being used by someone
else?

On Thu, May 13, 2010 at 1:25 PM, Damnjan damnjan.wdbe...@gmail.com wrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
Ikai Lan
Developer Relations, Google App Engine
Twitter: http://twitter.com/ikai
Delicious: http://delicious.com/ikailan


Google App Engine links:
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine

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



Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Damnjan Matejic
Hi Ikai, well maybe KEY could be used by 3 or maximum 4 ip addresses while
testing, but not more then that. How many have you found in the log ?
I was reading forum
http://groups.google.ca/group/google-appengine-java/browse_thread/thread/b75a2a06293f39eb/afce21741087671b?show_docid=afce21741087671b%C2%A0
There i saw that guy Ivan Pardo had same problem like i do, and you have
solved it, you were talking about whitelist.
You said  :I've updated the whitelist. It should take a bit for the changes
to propagate. 
This Service was working good for like 5 month and now suddenly it stopped
working because of 620 geocode :(.
Best,
Damnjan.


On Thu, May 13, 2010 at 5:00 PM, Ikai L (Google) ika...@google.com wrote:

 What's your application ID? Also, I see a lot of calls coming from many
 different IP addresses with your key. Is this key being used by someone
 else?

 On Thu, May 13, 2010 at 1:25 PM, Damnjan damnjan.wdbe...@gmail.comwrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


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



Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Ikai L (Google)
I've found many more than 3 or 4. Can you provide me with your application
ID?

On Thu, May 13, 2010 at 5:18 PM, Damnjan Matejic
damnjan.wdbe...@gmail.comwrote:

 Hi Ikai, well maybe KEY could be used by 3 or maximum 4 ip addresses while
 testing, but not more then that. How many have you found in the log ?
 I was reading forum
 http://groups.google.ca/group/google-appengine-java/browse_thread/thread/b75a2a06293f39eb/afce21741087671b?show_docid=afce21741087671b%C2%A0
 There i saw that guy Ivan Pardo had same problem like i do, and you have
 solved it, you were talking about whitelist.
 You said  :I've updated the whitelist. It should take a bit for the
 changes to propagate. 
 This Service was working good for like 5 month and now suddenly it stopped
 working because of 620 geocode :(.
 Best,
 Damnjan.


 On Thu, May 13, 2010 at 5:00 PM, Ikai L (Google) ika...@google.comwrote:

 What's your application ID? Also, I see a lot of calls coming from many
 different IP addresses with your key. Is this key being used by someone
 else?

 On Thu, May 13, 2010 at 1:25 PM, Damnjan damnjan.wdbe...@gmail.comwrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
Ikai Lan
Developer Relations, Google App Engine
Twitter: http://twitter.com/ikai
Delicious: http://delicious.com/ikailan


Google App Engine links:
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine

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



Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Damnjan Matejic
Sorry, but im not sure what do you mean, this is a web service, there is no
ID assigned to it :(.

On Thu, May 13, 2010 at 5:27 PM, Ikai L (Google) ika...@google.com wrote:

 I've found many more than 3 or 4. Can you provide me with your application
 ID?

 On Thu, May 13, 2010 at 5:18 PM, Damnjan Matejic 
 damnjan.wdbe...@gmail.com wrote:

 Hi Ikai, well maybe KEY could be used by 3 or maximum 4 ip addresses while
 testing, but not more then that. How many have you found in the log ?
 I was reading forum
 http://groups.google.ca/group/google-appengine-java/browse_thread/thread/b75a2a06293f39eb/afce21741087671b?show_docid=afce21741087671b%C2%A0
 There i saw that guy Ivan Pardo had same problem like i do, and you have
 solved it, you were talking about whitelist.
 You said  :I've updated the whitelist. It should take a bit for the
 changes to propagate. 
 This Service was working good for like 5 month and now suddenly it stopped
 working because of 620 geocode :(.
 Best,
 Damnjan.


 On Thu, May 13, 2010 at 5:00 PM, Ikai L (Google) ika...@google.comwrote:

 What's your application ID? Also, I see a lot of calls coming from many
 different IP addresses with your key. Is this key being used by someone
 else?

 On Thu, May 13, 2010 at 1:25 PM, Damnjan damnjan.wdbe...@gmail.comwrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


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



Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Damnjan Matejic
Well i guess im on the wrong place :(, web service is developed in
phpmysql.
Anyway i got that 620 error, so if you can give me ip addresses that are
using my API key, so i can check ?
If you have any other ideas why this is happening it would be really
helpful.
P.S. Where else can i ask for some kind of support ?

Thanks in advice,
Damnjan.

On Thu, May 13, 2010 at 5:43 PM, Ikai L (Google) ika...@google.com wrote:

 Is this an App Engine application? Where is this application hosted? This
 mailing list is for App Engine applications - the 620 error is caused by the
 fact that many application share a source IP address.

 On Thu, May 13, 2010 at 5:36 PM, Damnjan Matejic 
 damnjan.wdbe...@gmail.com wrote:

  Sorry, but im not sure what do you mean, this is a web service, there is
 no ID assigned to it :(.


 On Thu, May 13, 2010 at 5:27 PM, Ikai L (Google) ika...@google.comwrote:

 I've found many more than 3 or 4. Can you provide me with your
 application ID?

 On Thu, May 13, 2010 at 5:18 PM, Damnjan Matejic 
 damnjan.wdbe...@gmail.com wrote:

 Hi Ikai, well maybe KEY could be used by 3 or maximum 4 ip addresses
 while testing, but not more then that. How many have you found in the log ?
 I was reading forum
 http://groups.google.ca/group/google-appengine-java/browse_thread/thread/b75a2a06293f39eb/afce21741087671b?show_docid=afce21741087671b%C2%A0
 There i saw that guy Ivan Pardo had same problem like i do, and you
 have solved it, you were talking about whitelist.
 You said  :I've updated the whitelist. It should take a bit for the
 changes to propagate. 
 This Service was working good for like 5 month and now suddenly it
 stopped working because of 620 geocode :(.
 Best,
 Damnjan.


 On Thu, May 13, 2010 at 5:00 PM, Ikai L (Google) ika...@google.comwrote:

 What's your application ID? Also, I see a lot of calls coming from many
 different IP addresses with your key. Is this key being used by someone
 else?

 On Thu, May 13, 2010 at 1:25 PM, Damnjan damnjan.wdbe...@gmail.comwrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 You received this message 

Re: [appengine-java] 620 GeoCode Error

2010-05-13 Thread Ikai L (Google)
I can't share the IP addresses - I was just pointing out that they were not
App Engine IP addresses.

You'll want to ask your questions here on the Maps API groups:

http://groups.google.com/group/Google-Maps-API

http://groups.google.com/group/Google-Maps-APIThey'll be able to better
answer any questions you may have about why you may or may not have been
throttled.

On Thu, May 13, 2010 at 5:51 PM, Damnjan Matejic
damnjan.wdbe...@gmail.comwrote:

 Well i guess im on the wrong place :(, web service is developed in
 phpmysql.
 Anyway i got that 620 error, so if you can give me ip addresses that are
 using my API key, so i can check ?
 If you have any other ideas why this is happening it would be really
 helpful.
 P.S. Where else can i ask for some kind of support ?

 Thanks in advice,
 Damnjan.

 On Thu, May 13, 2010 at 5:43 PM, Ikai L (Google) ika...@google.comwrote:

 Is this an App Engine application? Where is this application hosted? This
 mailing list is for App Engine applications - the 620 error is caused by the
 fact that many application share a source IP address.

 On Thu, May 13, 2010 at 5:36 PM, Damnjan Matejic 
 damnjan.wdbe...@gmail.com wrote:

  Sorry, but im not sure what do you mean, this is a web service, there is
 no ID assigned to it :(.


 On Thu, May 13, 2010 at 5:27 PM, Ikai L (Google) ika...@google.comwrote:

 I've found many more than 3 or 4. Can you provide me with your
 application ID?

 On Thu, May 13, 2010 at 5:18 PM, Damnjan Matejic 
 damnjan.wdbe...@gmail.com wrote:

 Hi Ikai, well maybe KEY could be used by 3 or maximum 4 ip addresses
 while testing, but not more then that. How many have you found in the log 
 ?
 I was reading forum
 http://groups.google.ca/group/google-appengine-java/browse_thread/thread/b75a2a06293f39eb/afce21741087671b?show_docid=afce21741087671b%C2%A0
 There i saw that guy Ivan Pardo had same problem like i do, and you
 have solved it, you were talking about whitelist.
 You said  :I've updated the whitelist. It should take a bit for the
 changes to propagate. 
 This Service was working good for like 5 month and now suddenly it
 stopped working because of 620 geocode :(.
 Best,
 Damnjan.


 On Thu, May 13, 2010 at 5:00 PM, Ikai L (Google) ika...@google.comwrote:

 What's your application ID? Also, I see a lot of calls coming from
 many different IP addresses with your key. Is this key being used by 
 someone
 else?

 On Thu, May 13, 2010 at 1:25 PM, Damnjan 
 damnjan.wdbe...@gmail.comwrote:

 Hello,

 I'm getting 620 error whenever I try to geocode.
 I think problem appears to be related with IP address, since i can
 get
 a successful 200
 response if i try to connect to the URL from my pc.
 I read that requests per day per Maps API should not be over 15,000.
 And i meet that condition, because i don't have more then 1000
 request
 per day
 My API KEY is

 ABQIPpDxrLbnTC8BHOXUGUrPwhTLpg4bE0RUPudwWWAgBQ0uyAuvRRQArSqRsBkIy9cM_9jTnQQJMRtQTQ
 web service is on http://www.dyepaintball.com/locator/

 Best Regards,
 Damnjan.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 You 

Re: [appengine-java] Re: Viewing Emails in dev using log4j

2010-05-13 Thread Toby Reyelts
E-mails are logged at INFO level on the java.util.logging.Logger
named, com.google.appengine.api.mail.dev.LocalMailService. The default
configuration for logging is WARNING if you're using the default
logging.properties file from the SDK / Eclipse plugin. You can either change
the logging level in your configuration file to INFO, or you can change the
level that the SDK logs mail messages at by setting the following JVM flag
on your dev_appserver:

-Dmail.log_mail_level=WARNING

On Wed, May 12, 2010 at 4:36 PM, Eurig Jones eurigjo...@gmail.com wrote:

 No. It would be great if someone could shed some light on the issue.

 On May 12, 9:52 pm, Stevko andy.ste...@gmail.com wrote:
  Eurig - Did you find it? Its probably not log4j due to app engine
  using java.util.logging.Logger technology.
 
  I am also interested in where this log file is. I'm using Eclipse
  which is monitoring the log output and see nothing there.
  Is there another log I'm unaware of? I would assume it would be in the
  WEB-INF/appengine-generated directory but nothing shows there.
 
  --Stevko
 
  On Apr 5, 3:20 am, Eurig Jones eurigjo...@gmail.com wrote:
 
   Hi,
 
   From
 http://code.google.com/appengine/docs/java/mail/overview.html#Develop...
   ...
 
   When an application running in the developmentservercalls the Mail
   service to send an email message, the message is printed to thelog.
   The Java developmentserverdoes not send the email message.
 
   My question is, what log4j setup do I use to output these emails?
 
   Regards,
   Eurig Jones
 
  --
  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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group athttp://
 groups.google.com/group/google-appengine-java?hl=en.

 --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
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] Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Ikai L (Google)
Greetings, Java developers!

Prerelease SDK 1.3.4 is ready for download. As usual, please help us test
this release and post feedback to this thread.

The release notes are below:

Version 1.3.4
=
- Client side bulkloader available with the Python SDK that has a new
  configuration syntax and wizard for easier import/export with the
datastore.
  Can be used by enabling remote_api in your Java application
- Applications can now be configured to authenticate with OpenID by
selecting
  the OpenID option when creating your application in the admin console
http://code.google.com/p/googleappengine/issues/detail?id=248
http://code.google.com/p/googleappengine/issues/detail?id=56
- New API to allow App Engine apps to act as OAuth service providers
http://code.google.com/p/googleappengine/issues/detail?id=919
- The version update check in the Java SDK now uses https
- Allow full access to javax.el.*
http://code.google.com/p/googleappengine/issues/detail?id=3157
- Increased the timeout during deployment to 15 minutes
- Fixed an issue with JPA where an illegal cast exception was thrown during
the
  fetch of integer fields
- MemcacheService.setNamespace() is deprecated in favor of
  MemcacheServiceFactory.getMemcacheManager(namespace)
- Support in the SDK for Java 1.5 is being deprecated. These warnings now
appear
  when starting the SDK

-- 
Ikai Lan
Developer Relations, Google App Engine
Twitter: http://twitter.com/ikai
Delicious: http://delicious.com/ikailan


Google App Engine links:
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine

-- 
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] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Ikai L (Google)
... a link to the download would be helpful:

http://code.google.com/p/googleappengine/downloads/list

On Thu, May 13, 2010 at 7:45 PM, Ikai L (Google) ika...@google.com wrote:

 Greetings, Java developers!

 Prerelease SDK 1.3.4 is ready for download. As usual, please help us test
 this release and post feedback to this thread.

 The release notes are below:

 Version 1.3.4
 =
 - Client side bulkloader available with the Python SDK that has a new
   configuration syntax and wizard for easier import/export with the
 datastore.
   Can be used by enabling remote_api in your Java application
 - Applications can now be configured to authenticate with OpenID by
 selecting
   the OpenID option when creating your application in the admin console
 http://code.google.com/p/googleappengine/issues/detail?id=248
 http://code.google.com/p/googleappengine/issues/detail?id=56
 - New API to allow App Engine apps to act as OAuth service providers
 http://code.google.com/p/googleappengine/issues/detail?id=919
 - The version update check in the Java SDK now uses https
 - Allow full access to javax.el.*
 http://code.google.com/p/googleappengine/issues/detail?id=3157
 - Increased the timeout during deployment to 15 minutes
 - Fixed an issue with JPA where an illegal cast exception was thrown during
 the
   fetch of integer fields
 - MemcacheService.setNamespace() is deprecated in favor of
   MemcacheServiceFactory.getMemcacheManager(namespace)
 - Support in the SDK for Java 1.5 is being deprecated. These warnings now
 appear
   when starting the SDK

 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine




-- 
Ikai Lan
Developer Relations, Google App Engine
Twitter: http://twitter.com/ikai
Delicious: http://delicious.com/ikailan


Google App Engine links:
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine

-- 
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] Re: Safe Harbor DPA compliant incremental backups of datastore

2010-05-13 Thread François Masurel
Ypu might be interested in starring this issue :
http://code.google.com/p/googleappengine/issues/detail?id=776

On 13 mai, 05:29, Mandla msg.mand...@gmail.com wrote:
 I;m wairing for this, If anyone knows how to do it, please tell me.

 --
 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 
 athttp://groups.google.com/group/google-appengine-java?hl=en.

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



Re: [appengine-java] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread atomi
Are there API reference docs for the OpenID support?
It seems as though a new application would need to be created for this to
work - am I correct in assuming this? As of now I don't see that option,
which makes it a little difficult to test or play with.
What is the ETA/schedule on the feature complete 1.3.4 release?
Thanks.

On Thu, May 13, 2010 at 10:48 AM, Ikai L (Google) ika...@google.com wrote:

 ... a link to the download would be helpful:

 http://code.google.com/p/googleappengine/downloads/list

 On Thu, May 13, 2010 at 7:45 PM, Ikai L (Google) ika...@google.comwrote:

 Greetings, Java developers!

 Prerelease SDK 1.3.4 is ready for download. As usual, please help us test
 this release and post feedback to this thread.

 The release notes are below:

 Version 1.3.4
 =
 - Client side bulkloader available with the Python SDK that has a new
   configuration syntax and wizard for easier import/export with the
 datastore.
   Can be used by enabling remote_api in your Java application
 - Applications can now be configured to authenticate with OpenID by
 selecting
   the OpenID option when creating your application in the admin console
 http://code.google.com/p/googleappengine/issues/detail?id=248
 http://code.google.com/p/googleappengine/issues/detail?id=56
 - New API to allow App Engine apps to act as OAuth service providers
 http://code.google.com/p/googleappengine/issues/detail?id=919
 - The version update check in the Java SDK now uses https
 - Allow full access to javax.el.*
 http://code.google.com/p/googleappengine/issues/detail?id=3157
 - Increased the timeout during deployment to 15 minutes
 - Fixed an issue with JPA where an illegal cast exception was thrown
 during the
   fetch of integer fields
 - MemcacheService.setNamespace() is deprecated in favor of
   MemcacheServiceFactory.getMemcacheManager(namespace)
 - Support in the SDK for Java 1.5 is being deprecated. These warnings now
 appear
   when starting the SDK

 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


-- 
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] Link for user authentication

2010-05-13 Thread Michael
Hi,

I am creating a page using GWT+App Engine.  I am setting it up to have
it's own user system (as opposed to using goggle accounts). New users
sign up for an account and I want to email them a email confirmation
with a link they need to click (just like a billion other websites
do)  but I don't know the best way to do this with app engine.  Should
I send them to the main page with some GET data in the url to
determine that I need to validate the new user, or should I send them
to a seperate page that is only used for this user verification and
then redirects to the main page.  How do I go about creating a second
page, I am still new and have been doing the one page and javascript
updates the layout of it.

Thanks for the help on what I imagine is such a simple question.

-- 
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] Please star: Servlet 3.0

2010-05-13 Thread Jeff Schnitzer
Most web containers have support for the Servlet 3.0 spec now, and GAE
is starting to look a little behind the times.  Anyone else want to
star this issue and maybe up the priority?

http://code.google.com/p/googleappengine/issues/detail?id=3091

Jeff

-- 
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] Accessing the last committed timestamp using datastore API?

2010-05-13 Thread brendan
Slide 54 of Under the Covers of the Google App Engine Datastore by
Ryan Barrett states that the last committed timestamp co-located with
root entity.  Is it possible to access this last committed timestamp
using the low level datastore API?

I'd like to be able to access it to create an enhancement to objectify
that provides optimistic locking.

My idea is:
- On get(), populate a field in the entity just read with the
timestamp.  Probably the field would have an @Lock annotation.
- Send entity to gwt client over rpc.
- Receive entity back from gwt client over rpc.
- On put(), before update check the timestamp and fail if their is a
difference.

-- 
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] Setting some Cookies?

2010-05-13 Thread Mark
Hi,

I'd like to add a cookie to a client request. I have a jsp page I'm
serving from app engine. Is this correct?:

  // index.jsp:
  %@ page import=com.me.myproject.server.Util %

  Util.addCookie(response);



  // Util.java
  import javax.servlet.http.Cookie;
  import javax.servlet.http.HttpServletResponse;

  public class Util {

  public static void addCookie(HttpServletResponse response) {
  Cookie cookie1 = new Cookie(param1, 123);
  Cookie cookie2 = new Cookie(param2, 456);
  response.addCookie(cookie1);
  response.addCookie(cookie2);
  }
  }

mostly confused about 'response' just being globally available in my
jsp (I think this is just how jsps works) and if it is in fact of type
HttpServletResponse? I think then that it's ok to just pass it to my
java file from the jsp page?

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.



Re: [appengine-java] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread yjun hu
maybe google app engine shall cancel the 30seconds limit,  most of backend
process need more than 30seconds

On Fri, May 14, 2010 at 2:17 AM, atomi at...@verizon.net wrote:

 Are there API reference docs for the OpenID support?
 It seems as though a new application would need to be created for this to
 work - am I correct in assuming this? As of now I don't see that option,
 which makes it a little difficult to test or play with.
 What is the ETA/schedule on the feature complete 1.3.4 release?
 Thanks.


 On Thu, May 13, 2010 at 10:48 AM, Ikai L (Google) ika...@google.comwrote:

 ... a link to the download would be helpful:

 http://code.google.com/p/googleappengine/downloads/list

 On Thu, May 13, 2010 at 7:45 PM, Ikai L (Google) ika...@google.comwrote:

 Greetings, Java developers!

 Prerelease SDK 1.3.4 is ready for download. As usual, please help us test
 this release and post feedback to this thread.

 The release notes are below:

 Version 1.3.4
 =
 - Client side bulkloader available with the Python SDK that has a new
   configuration syntax and wizard for easier import/export with the
 datastore.
   Can be used by enabling remote_api in your Java application
 - Applications can now be configured to authenticate with OpenID by
 selecting
   the OpenID option when creating your application in the admin console
 http://code.google.com/p/googleappengine/issues/detail?id=248
 http://code.google.com/p/googleappengine/issues/detail?id=56
 - New API to allow App Engine apps to act as OAuth service providers
 http://code.google.com/p/googleappengine/issues/detail?id=919
 - The version update check in the Java SDK now uses https
 - Allow full access to javax.el.*
 http://code.google.com/p/googleappengine/issues/detail?id=3157
 - Increased the timeout during deployment to 15 minutes
 - Fixed an issue with JPA where an illegal cast exception was thrown
 during the
   fetch of integer fields
 - MemcacheService.setNamespace() is deprecated in favor of
   MemcacheServiceFactory.getMemcacheManager(namespace)
 - Support in the SDK for Java 1.5 is being deprecated. These warnings now
 appear
   when starting the SDK

 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine




 --
 Ikai Lan
 Developer Relations, Google App Engine
 Twitter: http://twitter.com/ikai
 Delicious: http://delicious.com/ikailan

 
 Google App Engine links:
 Blog: http://googleappengine.blogspot.com
 Twitter: http://twitter.com/app_engine
 Reddit: http://www.reddit.com/r/appengine

  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


  --
 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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
hapeblog (Blog on GAE)
http://www.hapeblog.com

-- 
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] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Thomas
It has been listed on their Features on Deck ( see item#2 of
http://code.google.com/intl/zh-TW/appengine/docs/roadmap.html )
already.

On 5月14日, 上午9時16分, yjun hu itswa...@gmail.com wrote:
 maybe google app engine shall cancel the 30seconds limit,  most of backend
 process need more than 30seconds
appengine-java?hl=en.

-- 
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] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Robert Lancer
Yeah, whats with the with OpenID by selecting the OpenID option when
creating your application, I hope this doesn't means that all our
existing apps will be locked out.

On May 13, 2:17 pm, atomi at...@verizon.net wrote:
 Are there API reference docs for the OpenID support?
 It seems as though a new application would need to be created for this to
 work - am I correct in assuming this? As of now I don't see that option,
 which makes it a little difficult to test or play with.
 What is the ETA/schedule on the feature complete 1.3.4 release?
 Thanks.

 On Thu, May 13, 2010 at 10:48 AM, Ikai L (Google) ika...@google.com wrote:





  ... a link to the download would be helpful:

 http://code.google.com/p/googleappengine/downloads/list

  On Thu, May 13, 2010 at 7:45 PM, Ikai L (Google) ika...@google.comwrote:

  Greetings, Java developers!

  Prerelease SDK 1.3.4 is ready for download. As usual, please help us test
  this release and post feedback to this thread.

  The release notes are below:

  Version 1.3.4
  =
  - Client side bulkloader available with the Python SDK that has a new
    configuration syntax and wizard for easier import/export with the
  datastore.
    Can be used by enabling remote_api in your Java application
  - Applications can now be configured to authenticate with OpenID by
  selecting
    the OpenID option when creating your application in the admin console
     http://code.google.com/p/googleappengine/issues/detail?id=248
     http://code.google.com/p/googleappengine/issues/detail?id=56
  - New API to allow App Engine apps to act as OAuth service providers
     http://code.google.com/p/googleappengine/issues/detail?id=919
  - The version update check in the Java SDK now uses https
  - Allow full access to javax.el.*
     http://code.google.com/p/googleappengine/issues/detail?id=3157
  - Increased the timeout during deployment to 15 minutes
  - Fixed an issue with JPA where an illegal cast exception was thrown
  during the
    fetch of integer fields
  - MemcacheService.setNamespace() is deprecated in favor of
    MemcacheServiceFactory.getMemcacheManager(namespace)
  - Support in the SDK for Java 1.5 is being deprecated. These warnings now
  appear
    when starting the SDK

  --
  Ikai Lan
  Developer Relations, Google App Engine
  Twitter:http://twitter.com/ikai
  Delicious:http://delicious.com/ikailan

  
  Google App Engine links:
  Blog:http://googleappengine.blogspot.com
  Twitter:http://twitter.com/app_engine
  Reddit:http://www.reddit.com/r/appengine

  --
  Ikai Lan
  Developer Relations, Google App Engine
  Twitter:http://twitter.com/ikai
  Delicious:http://delicious.com/ikailan

  
  Google App Engine links:
  Blog:http://googleappengine.blogspot.com
  Twitter:http://twitter.com/app_engine
  Reddit:http://www.reddit.com/r/appengine

   --
  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.comgoogle-appengine-java%2B 
  unsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.

 --
 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 
 athttp://groups.google.com/group/google-appengine-java?hl=en.

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



Re: [appengine-java] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Ravi Sharma
I tried using it in dev mode in my machine and used the following method to
create login URL.

 UserServiceFactory.getUserService().createLoginURL(/index.htm,
www.test.com,emai...@hotmail.com, null);
and i got the login url as
http://127.0.0.1:/_ah/login?continue=%2Findex.htm

and i am guessing that even for open id logins in dev mode GAE will present
the same old login screen.
So i tried deploying it on prod but i guess curretnly i cant run it. as got
the exception

java.lang.NoSuchMethodError:
com.google.appengine.api.users.UserService.createLoginURL(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/String;

So just waiting when it will be released on app engine as there is nothing
different on dev server to test..earlier also we could use any login is like
a...@example.com and now too. But i want to check it on app engine when it
will start sending me on yahoo site or hotmail or any other provider.

But thanks google and waiting for it to go in production.

Tavi.

On Fri, May 14, 2010 at 5:20 AM, Robert Lancer robert.lan...@gmail.comwrote:

 Yeah, whats with the with OpenID by selecting the OpenID option when
 creating your application, I hope this doesn't means that all our
 existing apps will be locked out.

 On May 13, 2:17 pm, atomi at...@verizon.net wrote:
  Are there API reference docs for the OpenID support?
  It seems as though a new application would need to be created for this to
  work - am I correct in assuming this? As of now I don't see that option,
  which makes it a little difficult to test or play with.
  What is the ETA/schedule on the feature complete 1.3.4 release?
  Thanks.
 
  On Thu, May 13, 2010 at 10:48 AM, Ikai L (Google) ika...@google.com
 wrote:
 
 
 
 
 
   ... a link to the download would be helpful:
 
  http://code.google.com/p/googleappengine/downloads/list
 
   On Thu, May 13, 2010 at 7:45 PM, Ikai L (Google) ika...@google.com
 wrote:
 
   Greetings, Java developers!
 
   Prerelease SDK 1.3.4 is ready for download. As usual, please help us
 test
   this release and post feedback to this thread.
 
   The release notes are below:
 
   Version 1.3.4
   =
   - Client side bulkloader available with the Python SDK that has a new
 configuration syntax and wizard for easier import/export with the
   datastore.
 Can be used by enabling remote_api in your Java application
   - Applications can now be configured to authenticate with OpenID by
   selecting
 the OpenID option when creating your application in the admin
 console
  http://code.google.com/p/googleappengine/issues/detail?id=248
  http://code.google.com/p/googleappengine/issues/detail?id=56
   - New API to allow App Engine apps to act as OAuth service providers
  http://code.google.com/p/googleappengine/issues/detail?id=919
   - The version update check in the Java SDK now uses https
   - Allow full access to javax.el.*
  http://code.google.com/p/googleappengine/issues/detail?id=3157
   - Increased the timeout during deployment to 15 minutes
   - Fixed an issue with JPA where an illegal cast exception was thrown
   during the
 fetch of integer fields
   - MemcacheService.setNamespace() is deprecated in favor of
 MemcacheServiceFactory.getMemcacheManager(namespace)
   - Support in the SDK for Java 1.5 is being deprecated. These warnings
 now
   appear
 when starting the SDK
 
   --
   Ikai Lan
   Developer Relations, Google App Engine
   Twitter:http://twitter.com/ikai
   Delicious:http://delicious.com/ikailan
 
   
   Google App Engine links:
   Blog:http://googleappengine.blogspot.com
   Twitter:http://twitter.com/app_engine
   Reddit:http://www.reddit.com/r/appengine
 
   --
   Ikai Lan
   Developer Relations, Google App Engine
   Twitter:http://twitter.com/ikai
   Delicious:http://delicious.com/ikailan
 
   
   Google App Engine links:
   Blog:http://googleappengine.blogspot.com
   Twitter:http://twitter.com/app_engine
   Reddit:http://www.reddit.com/r/appengine
 
--
   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.comgoogle-appengine-java%2bunsubscr...@googlegroups.comgoogle-appengine-java%2B
 unsubscr...@googlegroups.com
   .
   For more options, visit this group at
  http://groups.google.com/group/google-appengine-java?hl=en.
 
  --
  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.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group athttp://