[appengine-java] Re: Not sending email with Javamail and no error

2010-12-16 Thread Moretto
I've changed the code to initialize the Session object passing
properties as a parameter. Nothing changed. Still does not send emails
and doesnt throws any exception. Ideias??

  Properties props = new Properties();
Session session = Session.getDefaultInstance(props, null);


UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
try {
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(user.getEmail()));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress(email, destinatario));
msg.setSubject(titulo);
msg.setText(texto);
Transport.send(msg);

} catch (AddressException e) {
e.printStackTrace();
return false;
} catch (MessagingException e) {
e.printStackTrace();
return false;
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;

On Dec 14, 12:11 pm, Amit Pandey amit.s...@gmail.com wrote:
 Just try creating session object using property object. May be it can
 help(Not sure).

 Properties props = new Properties();
         Session session = Session.getDefaultInstance(props, null);



 On Tue, Dec 14, 2010 at 9:21 AM, Moretto mala...@gmail.com wrote:
  Hi,

  I'm using JAVAMAIL to send mail from my GAE app located at
 http://k-share.appspot.com/.

  I can't send email and no error occurs. The first time i've deployed
  my app, it send 2 email then no more.

  Take a look at the source code below:

  /*
   * To change this template, choose Tools | Templates
   * and open the template in the editor.
   */
  package com.appspot.kshare.control;

  import com.google.appengine.api.users.User;
  import com.google.appengine.api.users.UserService;
  import com.google.appengine.api.users.UserServiceFactory;
  import java.io.UnsupportedEncodingException;
  import javax.mail.Message;
  import javax.mail.MessagingException;
  import javax.mail.Session;
  import javax.mail.Transport;
  import javax.mail.internet.AddressException;
  import javax.mail.internet.InternetAddress;
  import javax.mail.internet.MimeMessage;

  /**
   *
   * @author malacma
   */
  public class EmailControlUtil {

     public static boolean sendMail(String email, String destinatario,
  String titulo, String texto, Object anexo) throws
  UnsupportedEncodingException {
         Session session = Session.getDefaultInstance(null);

         UserService userService = UserServiceFactory.getUserService();
         User user = userService.getCurrentUser();
         try {
             Message msg = new MimeMessage(session);
             msg.setFrom(new InternetAddress(user.getEmail()));
             msg.addRecipient(Message.RecipientType.TO,
                     new InternetAddress(email, destinatario));
             msg.setSubject(titulo);
             msg.setText(texto);
             Transport.send(msg);

         } catch (AddressException e) {
             e.printStackTrace();
             return false;
         } catch (MessagingException e) {
             e.printStackTrace();
             return false;
         } catch (Exception e) {
             e.printStackTrace();
             return false;
         }
         return true;
     }
  }

  Any ideia? Need help hurry :(

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



[appengine-java] Re: Not sending email with Javamail and no error

2010-12-16 Thread Moretto
Still no messagesand no errors

 Properties props = new Properties();
Session session = Session.getDefaultInstance(props, null);


  //  UserService userService =
UserServiceFactory.getUserService();
//User user = userService.getCurrentUser();
try {
Message msg = new MimeMessage(session);
//msg.setFrom(new InternetAddress(user.getEmail()));
msg.setFrom(new InternetAddress(mala...@gmail.com, [k-
share]));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress(email, destinatario));
msg.setSubject(titulo);
msg.setText(texto);
Transport.send(msg);

} catch (AddressException e) {
e.printStackTrace();
return false;
} catch (MessagingException e) {
e.printStackTrace();
return false;
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;

On Dec 17, 2:03 am, Moretto mala...@gmail.com wrote:
 can send email messages on behalf of the app's administrators, and on
 behalf of users with Google Accounts.

 UserService userService = UserServiceFactory.getUserService();
         User user = userService.getCurrentUser();

 These two lines of code retrieve the current google user logged in.
 i'll change it and test.

 On Dec 17, 1:52 am, A. Stevko andy.ste...@gmail.com wrote:



  I now recall the 
  conditions...http://code.google.com/appengine/docs/java/mail/overview.html

   App Engine applications can send email messages on behalf of the app's
   administrators, and on behalf of users with Google Accounts.
  On Thu, Dec 16, 2010 at 7:49 PM, A. Stevko andy.ste...@gmail.com wrote:
   Does the email address used in your From have administrator privileges for
   your app?

              msg.setFrom(new InternetAddress(user.getEmail()));

   I read somewhere that system could only send email from registered email
   addresses.

   On Thu, Dec 16, 2010 at 7:13 PM, Moretto mala...@gmail.com wrote:

   I've changed the code to initialize the Session object passing
   properties as a parameter. Nothing changed. Still does not send emails
   and doesnt throws any exception. Ideias??

        Properties props = new Properties();
          Session session = Session.getDefaultInstance(props, null);

           UserService userService = UserServiceFactory.getUserService();
          User user = userService.getCurrentUser();
          try {
              Message msg = new MimeMessage(session);
              msg.setFrom(new InternetAddress(user.getEmail()));
              msg.addRecipient(Message.RecipientType.TO,
                      new InternetAddress(email, destinatario));
              msg.setSubject(titulo);
              msg.setText(texto);
              Transport.send(msg);

          } catch (AddressException e) {
              e.printStackTrace();
              return false;
          } catch (MessagingException e) {
              e.printStackTrace();
              return false;
          } catch (Exception e) {
              e.printStackTrace();
              return false;
          }
          return true;

   On Dec 14, 12:11 pm, Amit Pandey amit.s...@gmail.com wrote:
Just try creating session object using property object. May be it can
help(Not sure).

Properties props = new Properties();
        Session session = Session.getDefaultInstance(props, null);

On Tue, Dec 14, 2010 at 9:21 AM, Moretto mala...@gmail.com wrote:
 Hi,

 I'm using JAVAMAIL to send mail from my GAE app located at
http://k-share.appspot.com/.

 I can't send email and no error occurs. The first time i've deployed
 my app, it send 2 email then no more.

 Take a look at the source code below:

 /*
  * To change this template, choose Tools | Templates
  * and open the template in the editor.
  */
 package com.appspot.kshare.control;

 import com.google.appengine.api.users.User;
 import com.google.appengine.api.users.UserService;
 import com.google.appengine.api.users.UserServiceFactory;
 import java.io.UnsupportedEncodingException;
 import javax.mail.Message;
 import javax.mail.MessagingException;
 import javax.mail.Session;
 import javax.mail.Transport;
 import javax.mail.internet.AddressException;
 import javax.mail.internet.InternetAddress;
 import javax.mail.internet.MimeMessage;

 /**
  *
  * @author malacma
  */
 public class EmailControlUtil {

    public static boolean sendMail(String email, String destinatario,
 String titulo, String texto, Object anexo) throws
 UnsupportedEncodingException {
        Session session = Session.getDefaultInstance(null);

        UserService userService = UserServiceFactory.getUserService();
        User user = userService.getCurrentUser();
        try {
            Message msg = new

[appengine-java] Re: Not sending email with Javamail and no error

2010-12-16 Thread Moretto
As you see the first time i've deployed my app, 2 email were sent. It
appeared at my cota details. Now  Could you post your headers details?

Mail API Calls   0%  0 of 7,000  Okay
Recipients Emailed   0%  0 of 2,000  Okay
Admins Emailed   0%  0 of 5,000  Okay
Message Body Data Sent   0%  0.00 of 0.06 GBytes Okay
Attachments Sent 0%  0 of 2,000  Okay
Attachment Data Sent 0%  0.00 of 0.10 GBytes Okay

On Dec 17, 2:21 am, A. Stevko andy.ste...@gmail.com wrote:
 I have much the same code although I set more headers.
 How about adding yourself as a BCC and/or CC?
 Also, do you see any utilization  in your Quota details - Mail API Calls
 and Recipients Emailed ?



 On Thu, Dec 16, 2010 at 8:12 PM, Moretto mala...@gmail.com wrote:
  Still no messagesand no errors

   Properties props = new Properties();
         Session session = Session.getDefaultInstance(props, null);

       //  UserService userService =
  UserServiceFactory.getUserService();
     //    User user = userService.getCurrentUser();
         try {
             Message msg = new MimeMessage(session);
             //msg.setFrom(new InternetAddress(user.getEmail()));
              msg.setFrom(new InternetAddress(mala...@gmail.com, [k-
  share]));
              msg.addRecipient(Message.RecipientType.TO,
                     new InternetAddress(email, destinatario));
             msg.setSubject(titulo);
             msg.setText(texto);
             Transport.send(msg);

         } catch (AddressException e) {
             e.printStackTrace();
             return false;
         } catch (MessagingException e) {
             e.printStackTrace();
             return false;
         } catch (Exception e) {
             e.printStackTrace();
             return false;
         }
         return true;

  On Dec 17, 2:03 am, Moretto mala...@gmail.com wrote:
   can send email messages on behalf of the app's administrators, and on
   behalf of users with Google Accounts.

   UserService userService = UserServiceFactory.getUserService();
           User user = userService.getCurrentUser();

   These two lines of code retrieve the current google user logged in.
   i'll change it and test.

   On Dec 17, 1:52 am, A. Stevko andy.ste...@gmail.com wrote:

I now recall the conditions...
 http://code.google.com/appengine/docs/java/mail/overview.html

 App Engine applications can send email messages on behalf of the
  app's
 administrators, and on behalf of users with Google Accounts.
On Thu, Dec 16, 2010 at 7:49 PM, A. Stevko andy.ste...@gmail.com
  wrote:
 Does the email address used in your From have administrator
  privileges for
 your app?

            msg.setFrom(new InternetAddress(user.getEmail()));

 I read somewhere that system could only send email from registered
  email
 addresses.

 On Thu, Dec 16, 2010 at 7:13 PM, Moretto mala...@gmail.com wrote:

 I've changed the code to initialize the Session object passing
 properties as a parameter. Nothing changed. Still does not send
  emails
 and doesnt throws any exception. Ideias??

      Properties props = new Properties();
        Session session = Session.getDefaultInstance(props, null);

         UserService userService =
  UserServiceFactory.getUserService();
        User user = userService.getCurrentUser();
        try {
            Message msg = new MimeMessage(session);
            msg.setFrom(new InternetAddress(user.getEmail()));
            msg.addRecipient(Message.RecipientType.TO,
                    new InternetAddress(email, destinatario));
            msg.setSubject(titulo);
            msg.setText(texto);
            Transport.send(msg);

        } catch (AddressException e) {
            e.printStackTrace();
            return false;
        } catch (MessagingException e) {
            e.printStackTrace();
            return false;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
        return true;

 On Dec 14, 12:11 pm, Amit Pandey amit.s...@gmail.com wrote:
  Just try creating session object using property object. May be it
  can
  help(Not sure).

  Properties props = new Properties();
          Session session = Session.getDefaultInstance(props, null);

  On Tue, Dec 14, 2010 at 9:21 AM, Moretto mala...@gmail.com
  wrote:
   Hi,

   I'm using JAVAMAIL to send mail from my GAE app located at
  http://k-share.appspot.com/.

   I can't send email and no error occurs. The first time i've
  deployed
   my app, it send 2 email then no more.

   Take a look at the source code below:

   /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */
   package

[appengine-java] Re: No Billing - No Blobstore

2010-12-13 Thread Moretto
What a mess...

I was so excited when...


Uncaught exception from servlet
com.google.apphosting.api.ApiProxy$FeatureNotEnabledException: The
Blobstore API will be enabled for this application once billing has
been enabled in the admin console.
at com.google.appengine.runtime.Request.process-
cd1f1984e7e72c68(Request.java)
at com.google.net.rpc.RpcStub$RpcCallbackDispatcher
$1.runInContext(RpcStub.java:1025)
at com.google.tracing.TraceContext$TraceContextRunnable
$1.run(TraceContext.java:448)
at com.google.tracing.TraceContext.runInContext(TraceContext.java:
688)
at com.google.tracing.TraceContext
$AbstractTraceContextCallback.runInInheritedContextNoUnref(TraceContext.java:
326)
at com.google.tracing.TraceContext
$AbstractTraceContextCallback.runInInheritedContext(TraceContext.java:
318)
at com.google.tracing.TraceContext
$TraceContextRunnable.run(TraceContext.java:446)
at com.google.net.rpc.RpcStub
$RpcCallbackDispatcher.rpcFinished(RpcStub.java:1046)
at com.google.net.rpc.RPC.internalFinish(RPC.java:2122)
at com.google.net.rpc.impl.RpcNetChannel.finishRpc(RpcNetChannel.java:
2370)
at
com.google.net.rpc.impl.RpcNetChannel.messageReceived(RpcNetChannel.java:
1284)
at
com.google.net.rpc.impl.RpcConnection.parseMessages(RpcConnection.java:
319)
at
com.google.net.rpc.impl.RpcConnection.dataReceived(RpcConnection.java:
290)
at com.google.net.async.Connection.handleReadEvent(Connection.java:
474)
at
com.google.net.async.EventDispatcher.processNetworkEvents(EventDispatcher.java:
831)
at
com.google.net.async.EventDispatcher.internalLoop(EventDispatcher.java:
207)
at com.google.net.async.EventDispatcher.loop(EventDispatcher.java:
103)
at com.google.net.async.GlobalEventRegistry
$2.runLoop(GlobalEventRegistry.java:95)
at com.google.net.async.LoopingEventDispatcher
$EventDispatcherThread.run(LoopingEventDispatcher.java:385)

Unexpected exception from servlet: com.google.apphosting.api.ApiProxy
$FeatureNotEnabledException: The Blobstore API will be enabled for
this application once billing has been enabled in the admin console.



On 16 nov, 19:18, Ikai Lan (Google) ikai.l+gro...@google.com
wrote:
 You must enable billing. Blobstore is a billing only feature. You won't be
 charged unless you exceed quotas, however.

 --
 Ikai Lan
 Developer Programs Engineer, Google App Engine
 Blogger:http://googleappengine.blogspot.com
 Reddit:http://www.reddit.com/r/appengine
 Twitter:http://twitter.com/app_engine

 On Tue, Nov 16, 2010 at 2:53 PM, andrew aute...@gmail.com wrote:
  I am developing an app and have been working WELL within all
  development quotas for a while now (almost all of them show 0%).

  I recently coded image upload and use of blobstore for image storage,
  only to find that when attempting to deploy to production I get the
  following run-time exception:

  com.google.apphosting.api.ApiProxy$FeatureNotEnabledException: The
  Blobstore API will be enabled for this application once billing has
  been enabled in the admin console.
         at
  com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:
  378)
         at
  com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:
  581)
         ...

  So, I understand that there is NO Blobstore for free within
  development quotas?

  If I enable billing, will I be charged for Blobstore API use ONLY with
  other in-quote usage remaining free, or will billing be switched on
  for everything?

  The message seems clear, but it's a major hurdle for us, and so I just
  want to make sure I've got it right.

  This might be the trigger for me to investigate S3 and EC2

  Andrew

  --
  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] Not sending email with Javamail and no error

2010-12-13 Thread Moretto
Hi,

I'm using JAVAMAIL to send mail from my GAE app located at
http://k-share.appspot.com/.

I can't send email and no error occurs. The first time i've deployed
my app, it send 2 email then no more.

Take a look at the source code below:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.appspot.kshare.control;

import com.google.appengine.api.users.User;
import com.google.appengine.api.users.UserService;
import com.google.appengine.api.users.UserServiceFactory;
import java.io.UnsupportedEncodingException;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

/**
 *
 * @author malacma
 */
public class EmailControlUtil {

public static boolean sendMail(String email, String destinatario,
String titulo, String texto, Object anexo) throws
UnsupportedEncodingException {
Session session = Session.getDefaultInstance(null);

UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
try {
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(user.getEmail()));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress(email, destinatario));
msg.setSubject(titulo);
msg.setText(texto);
Transport.send(msg);

} catch (AddressException e) {
e.printStackTrace();
return false;
} catch (MessagingException e) {
e.printStackTrace();
return false;
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
}

Any ideia? Need help hurry :(


-- 
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] The Blobstore API will be enabled for this application once billing has been enabled in the admin console.

2010-12-13 Thread Moretto
Anybody knows how to upload content to GAE app without the billing
info?

Uncaught exception from servlet
com.google.apphosting.api.ApiProxy$FeatureNotEnabledException: The
Blobstore API will be enabled for this application once billing has
been enabled in the admin console.
at
com.google.appengine.runtime.Request.process-5401966c32ecd26c(Request.java)
at com.google.net.rpc.RpcStub$RpcCallbackDispatcher
$1.runInContext(RpcStub.java:1025)
at com.google.tracing.TraceContext$TraceContextRunnable
$1.run(TraceContext.java:448)
at com.google.tracing.TraceContext.runInContext(TraceContext.java:
688)
at com.google.tracing.TraceContext
$AbstractTraceContextCallback.runInInheritedContextNoUnref(TraceContext.java:
326)
at com.google.tracing.TraceContext
$AbstractTraceContextCallback.runInInheritedContext(TraceContext.java:
318)
at com.google.tracing.TraceContext
$TraceContextRunnable.run(TraceContext.java:446)
at com.google.net.rpc.RpcStub
$RpcCallbackDispatcher.rpcFinished(RpcStub.java:1046)
at com.google.net.rpc.RPC.internalFinish(RPC.java:2122)
at com.google.net.rpc.impl.RpcNetChannel.finishRpc(RpcNetChannel.java:
2370)
at
com.google.net.rpc.impl.RpcNetChannel.messageReceived(RpcNetChannel.java:
1284)
at
com.google.net.rpc.impl.RpcConnection.parseMessages(RpcConnection.java:
319)
at
com.google.net.rpc.impl.RpcConnection.dataReceived(RpcConnection.java:
290)
at com.google.net.async.Connection.handleReadEvent(Connection.java:
474)
at
com.google.net.async.EventDispatcher.processNetworkEvents(EventDispatcher.java:
831)
at
com.google.net.async.EventDispatcher.internalLoop(EventDispatcher.java:
207)
at com.google.net.async.EventDispatcher.loop(EventDispatcher.java:
103)
at com.google.net.async.GlobalEventRegistry
$2.runLoop(GlobalEventRegistry.java:95)
at com.google.net.async.LoopingEventDispatcher
$EventDispatcherThread.run(LoopingEventDispatcher.java:385)

Unexpected exception from servlet: com.google.apphosting.api.ApiProxy
$FeatureNotEnabledException: The Blobstore API will be enabled for
this application once billing has been enabled in the admin console.

-- 
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] Retrieve GMAIL contacts

2010-12-13 Thread Moretto
Hi,

Im'trying to read gmail contacts from my GAE APP. So the following
class works fine at desktop app, but when i call getEmails method at
my servlet a excpetion occurs. Seems like im not allowed to do it.


/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.appspot.kshare.control;

import com.google.gdata.client.contacts.*;
import com.google.gdata.data.contacts.*;

import com.google.gdata.data.contacts.ContactFeed;

import com.google.gdata.data.contacts.ContactEntry;
import com.google.gdata.data.extensions.*;
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.ArrayList;
import java.util.List;

/**
 *
 * @author malacma
 */
public class ContactsControlUtil {

public static ListString getEmails(String user, String senha)
throws MalformedURLException, AuthenticationException, IOException,
ServiceException {
URL feedUrl = new URL(https://www.google.com/m8/feeds/
contacts/default/full);
ContactsService service = new ContactsService(Google-
contactsExampleApp-1);
service.setUserCredentials(user, senha);
ContactFeed cf = service.getFeed(feedUrl, ContactFeed.class);


ListString lEmails = new ArrayListString();
for (ContactEntry ce : cf.getEntries()) {
//System.out.print(ce.toString());
ListEmail lEmail = ce.getEmailAddresses();
for (Email em : lEmail) {
lEmails.add(em.getAddress());
}
}
return lEmails;

}
public static  void main(String args[]) throws
MalformedURLException, AuthenticationException, IOException,
ServiceException{
System.out.print(getEmails(mala...@gmail.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.



[google-appengine] NetBeans deployment plugin

2010-03-06 Thread Moretto
The following error is occuring. Any one have ideia? All the libs are
at the classpath.

dirname: operando extra `de'
Tente `dirname --help' para mais informação.
Exception in thread main java.lang.NoClassDefFoundError: com/google/
appengine/tools/admin/AppCfg
Caused by: java.lang.ClassNotFoundException:
com.google.appengine.tools.admin.AppCfg
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
316)
Could not find the main class:
com.google.appengine.tools.admin.AppCfg.  Program will exit.
dirname: operando extra `de'
Tente `dirname --help' para mais informação.
Exception in thread main java.lang.NoClassDefFoundError: com/google/
appengine/tools/admin/AppCfg
Caused by: java.lang.ClassNotFoundException:
com.google.appengine.tools.admin.AppCfg
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
316)
Could not find the main class:
com.google.appengine.tools.admin.AppCfg.  Program will exit.
dirname: operando extra `de'
Tente `dirname --help' para mais informação.
Exception in thread main java.lang.NoClassDefFoundError: com/google/
appengine/tools/admin/AppCfg
Caused by: java.lang.ClassNotFoundException:
com.google.appengine.tools.admin.AppCfg
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
316)
Could not find the main class:
com.google.appengine.tools.admin.AppCfg.  Program will exit.
dirname: operando extra `de'
Tente `dirname --help' para mais informação.
Exception in thread main java.lang.NoClassDefFoundError: com/google/
appengine/tools/admin/AppCfg
Caused by: java.lang.ClassNotFoundException:
com.google.appengine.tools.admin.AppCfg
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
316)
Could not find the main class:
com.google.appengine.tools.admin.AppCfg.  Program will exit.

-- 
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-appeng...@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't create a account : You have sent too many SMS verification

2010-02-22 Thread Moretto
I'm trying to create a google app engine but the following error
happens:

You have sent too many SMS verification

What should i do?

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