달력

32024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

'java mail'에 해당되는 글 1건

  1. 2007.07.05 [java mail] access to default session denied 에러발생시... 1
[펌] http://forum.java.sun.com/thread.jspa?threadID=247536&messageID=913161


i got the solution for the problem myself
if any one encounter same problem ,

Just change
session = javax.mail.Session.geDefaultInstance(props,auth);


to

session = javax.mail.Session.getInstance(props,auth);
while using in more than one smtps,user,passwords etc in same JRE
bye
Posted by tornado
|