View Single Post
Old 02-22-2013, 11:24 PM   PM User | #1
billboy
New Coder

 
Join Date: Feb 2013
Posts: 37
Thanks: 1
Thanked 0 Times in 0 Posts
billboy is an unknown quantity at this point
Applet Not Loading

I have an applet someone wrote for me back in 2004. I am trying to get it to work on my website but it doesnt load. It works on my computer but not when i load it on web server and try to run it from my website If I use this code:

Code:
 <applet name="LoanCalculator"
    code="MWLoan.Loan.class"
    archive="LoanCalculator.jar, jakarta-poi-1.5.1-final-20020615.jar"
    width=10 height=10>
    </applet>
I goes as far as a java security warning pop up and then thats it


If I try and go this route:

Code:
<embed id="LoanCalculator"
       type="application/x-java-applet;version=1.6"
       width="256" height="256" 
       archive="LoanCalculator.jar, jakarta-poi-1.5.1-final-20020615.jar"
       code="MWLoan.Loan.class"
       pluginspage="http://java.com/download/"
       myParam="My Param Value" />-->
it gives me an exception error

MWLoan.Loan.class could not be found

here is a link to my site:

http://www.pacificfinancial.com/loan...der/applet.htm

Can someone point me in the right direction of what I am doing wrong. Thank you
billboy is offline   Reply With Quote