Я пытаюсь получить доступ к своей входящей почте GMail, используя IMAP и JavaMail в сервлете, подобном этому:
Session imapSession = this.getSession(true);
System.out.println("getting the store");
Store store = imapSession.getStore("imap");
System.out.println("connecting to the store");
store.connect("imap.gmail.com", "address@gmail.com","password");
System.out.println("getting the Sent folder");
Folder folder = store.getFolder("INBOX");
System.out.println("Opening the folder in a READ_WRITE mode");
folder.open(Folder.READ_WRITE);
Сервлет зависает и больше ничего не делает при звонке store.connect("imap.gmail.com", "address@gmail.com","password");
Есть мысли ??
Спасибо