Hey guys,
I am beginning to learn Java and I created my first applet which I put on my website. This applet multiplies the number in jTextField1 and jTextField2 and displays the result in jLabel1. I have successfully compiled the code into a .jar and .class file. I have uploaded both files onto my website and created an html page with the following code:

HTML Code:
<applet width="600" height="600" archive="JavaLibrary1.jar" code="NewJApplet.class"></applet>
The html which the code is in, is: http://gaston.x10host.com/1.html


The problem I am having is it keeps telling me "Your security settings have blocked a self-signed application from running". I'm aware of adding my site to the exception list, but how do I make it so it loads it without needing to add it to the exception list? How do I make my applet trusted so a user can run it without needing to add it to the exception?

Thanks!