whats the use of the following jar files a)sinetfactory.jar b)mail.jar C)activation.jar ? i am doing a project in which we have to send and retrieve email msgs from gmail account..so the above jars are to be used..wats their actual purpose?
Printable View
whats the use of the following jar files a)sinetfactory.jar b)mail.jar C)activation.jar ? i am doing a project in which we have to send and retrieve email msgs from gmail account..so the above jars are to be used..wats their actual purpose?
It's hard to know for sure, because anybody can create JARs and give them those names, but most likely:
sinetfactory.jar = Download Secure iNet Factory - Java Secure FTP, Java Secure Email, Java SSH
mail.jar = JavaMail API
activation.jar = JavaBeans Activation Framework
In a mail program, the Activation Framework would be used to handle MIME data (attachments, HTML content, etc.), the JavaMail API would handle the SMTP protocol navigation, and Secure iNet Factory would handle SSL for secure connection to Google's mail servers.
-Gary-
thanks gary!