Results 1 to 3 of 3
Thread: javax.mail Query HELP
- 01-18-2010, 04:40 PM #1
Member
- Join Date
- Jun 2008
- Posts
- 87
- Rep Power
- 0
javax.mail Query HELP
Hi all
I made a GUI based code to send mails using javax.mail api now i made my code in Net Beans and i just made a library of javax.mail and attached it to my project
Everything is working fine using netbeans
The problem arises when i create a jar file of it and try to run in other computer there the mail does not send
The problem is that javax.mail api is not in that PC so how can i add javax.api in that api without manually adding javax.mail in the system path of PC
This problem is also in my PC too even though i have added the path in system variable path but even then i cant run the jar file
Help me please
- 01-20-2010, 09:47 PM #2
the [system] path used by netbeans IDE is likely not the same as the control panel settings environment variable CLASSPATH variable.
you can set the system environment variable for CLASSPATH to include the location of this mail.jar and restart windows, or the command shell used to launch the applicaiton.
or you can do this in a batch file to set the class path and then launch your application
or you can have the external dependent API in the same folder when building the jar file ,specify the manifest entry for class path, see also: Adding Classes to the JAR File's Classpath (The Java™ Tutorials > Deployment > Packaging Programs in JAR Files)Java Code:set CLASSPATH=pathtomail.jar;my.jar java -cp %CLASSPATH% package.my.main.Class
- 01-22-2010, 01:16 PM #3
Member
- Join Date
- Jun 2008
- Posts
- 87
- Rep Power
- 0
Similar Threads
-
problem with sending mail usin javaX.mail api
By sandeepsai39 in forum New To JavaReplies: 4Last Post: 11-25-2009, 05:37 AM -
javax.mail.Transport
By sharpi03 in forum Advanced JavaReplies: 5Last Post: 10-23-2009, 05:26 PM -
javax.mail.SendFailedException: Invalid Addresses;
By Anju Jose in forum Advanced JavaReplies: 2Last Post: 03-08-2009, 12:29 AM -
Javax.mail.MethodNotSupported Exception in java mail api
By namarc in forum Advanced JavaReplies: 2Last Post: 05-05-2008, 06:01 AM -
I can't import javax.mail
By katie in forum New To JavaReplies: 2Last Post: 08-04-2007, 05:05 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks