[google-appengine] Deployment Limit

2009-06-02 Thread nikhil bharadwaj


Is the deployment limited to 250 per day (or) per week (or) per month?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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
-~--~~~~--~~--~--~---



[google-appengine] Can I use free quota for commercial purposes?

2009-06-04 Thread nikhil bharadwaj
Can I continue with free quota systems if I wish to use it for commercial
purposes like developing apps for my college,etc.

-- 
Thanks and Regards,

Nikhil B. Bharadwaj
Student
MLR Institute of Technology (www.mlrinstitutions.ac.in)
(Jawaharlal Nehru Technological University)
www.jntu.ac.in
http://nikhilbharadwaj.blogspot.com/
http://nikhilbharadwaj.wordpress.com/

"I have felt it and lived it and now it leaves me here, love is the ultimate
pain and joy, without it you die with it you perish. "

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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
-~--~~~~--~~--~--~---



[google-appengine] Datastore Limit

2009-06-04 Thread nikhil bharadwaj
Is the datastore limited to 1GB a day or 30GB a month or 365GB a year?

-- 
Thanks and Regards,

Nikhil B. Bharadwaj
Student
MLR Institute of Technology (www.mlrinstitutions.ac.in)
(Jawaharlal Nehru Technological University)
www.jntu.ac.in
http://nikhilbharadwaj.blogspot.com/
http://nikhilbharadwaj.wordpress.com/

"I have felt it and lived it and now it leaves me here, love is the ultimate
pain and joy, without it you die with it you perish. "



-- 
Thanks and Regards,

Nikhil B. Bharadwaj
Ambassador (http://fedoraproject.org/wiki/NikhilBharadwaj)
Fedora Project (http://fedoraproject.org)

Student
MLR Institute of Technology (www.mlrinstitutions.ac.in)
(Jawaharlal Nehru Technological University)
www.jntu.ac.in
http://nikhilbharadwaj.blogspot.com/
http://nikhilbharadwaj.wordpress.com/

"I have felt it and lived it and now it leaves me here, love is the ultimate
pain and joy, without it you die with it you perish. "

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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
-~--~~~~--~~--~--~---



[google-appengine] Java App Engine Error

2009-06-04 Thread nikhil bharadwaj
I was developing a web app with a few static html's , jsp's and servlets.

I got this error message:

Compiling module com.webapp.sampleapp.Sample_Application_Test
   Compiling 5 permutations
  Permutation compile succeeded
   Linking into war
  Link succeeded
   Compilation succeeded -- 36.609s
Creating staging directory
Scanning for jsp files.
Compiling jsp files.
Compiling java files.
*java.lang.IllegalStateException: cannot find javac executable based on
java.home, tried "C:\Program Files\Java\jre6\bin\javac.exe" and "C:\Program
Files\Java\bin\javac.exe"*

Can someone suggest how to proceed?

Debugging information may be found in C:\Documents and Settings\Nikhil\Local
Settings\Temp\appengine-deploy25632.log

-- 
Thanks and Regards,

Nikhil B. Bharadwaj

Student
MLR Institute of Technology (www.mlrinstitutions.ac.in)
(Jawaharlal Nehru Technological University)
www.jntu.ac.in
http://nikhilbharadwaj.blogspot.com/
http://nikhilbharadwaj.wordpress.com/

"I have felt it and lived it and now it leaves me here, love is the ultimate
pain and joy, without it you die with it you perish. "

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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
-~--~~~~--~~--~--~---



[google-appengine] Error Message while trying this code

2009-06-08 Thread nikhil bharadwaj
Hello All,

I was trying some code using the Google Data Plugin on Eclipse, it would be
great if someone would throw some light on it.
*
Error:*

Exception in thread "main" java.lang.NoClassDefFoundError:
com/google/common/collect/Maps
at com.google.gdata.wireformats.AltRegistry.(AltRegistry.java:118)
at com.google.gdata.wireformats.AltRegistry.(AltRegistry.java:100)
at com.google.gdata.client.Service.(Service.java:513)
at Documents.main(Documents.java:36)
Caused by: java.lang.ClassNotFoundException: com.google.common.collect.Maps
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
... 4 more


Code:


import com.google.gdata.client.docs.DocsService;
import com.google.gdata.data.docs.DocumentListEntry;
import com.google.gdata.data.docs.DocumentListFeed;
import com.google.gdata.util.AuthenticationException;
import com.google.gdata.util.ServiceException;

import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;

/**
 * This is a test template
 */

  public class Documents {

public static void main(String[] args) {

  try {

// Create a new Documents service
DocsService myService = new DocsService("My Application");
myService.setUserCredentials(args[0],args[1]);

// Get a list of all entries
URL metafeedUrl = new URL("
http://docs.google.com/feeds/documents/private/full";);
System.out.println("Getting Documents entries...\n");
DocumentListFeed resultFeed = myService.getFeed(metafeedUrl,
DocumentListFeed.class);
List entries = resultFeed.getEntries();
for(int i=0; ihttp://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Deploying Application on Google Apps Domain

2009-06-24 Thread nikhil bharadwaj
Can we have a consistent url like *WebApp*.*mydomain.com* instead of
WebApp.appspot.com.

I have admin rights to the Google Apps domain.

-- 
Thanks and Regards,

Nikhil B. Bharadwaj


"I have felt it and lived it and now it leaves me here, love is the ultimate
pain and joy, without it you die with it you perish. "

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
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
-~--~~~~--~~--~--~---