The http://java.sun.com/products/javamail/FAQ.html#gmail shows how to
access Gmail Inbox using JavaMail.
//String host = "imap.gmail.com;
String host = "pop.gmail.com;
String username = "user";
String password = "passwd";
// ...
//Store store = session.getStore("imaps");
Store store = session.getStore("pop3s");
store.connect(host, username, password);
// ...
I tried the above code and deployed it on GAE. I received the
following log:
Unable to locate provider for protocol: pop3s
I switched to 'Store store = session.getStore("imaps");', It gave me
similar error.
Unable to locate provider for protocol: imaps
I am using GAE 1.3.0.
Please advise if this is even possible. If yes, what did I do wrong?
Thanks in advance for your help.
--
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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.