Hi everybody,
I have a hard trouble for running applet and I have not been able to solve this problem for days.
I developed an applet and structure of this applet is so:
I create one jar file including yuklemex file and there is a class named yuklemeApplet.class in this folder in jar. And I signed this jar file by using my real code signing certificate.
Also I have two server. I call this applet by using the code below on one of my servers, this applet runs correct. There is no any problem.
HTML Code:
<object type='application/x-java-applet;version=1.4.1' width='1' height='1' name='hidden_appletIDSI' id='hidden_appletIDSI'>
| | <param name='codebase' value='classes/myyukleme'> |
| | <param name='code' value='yuklemex/yuklemeApplet.class'> |
| | <param name='name' value='appletModul'> |
<param name='archive' value='yuklemex.jar'>
</object>
But I need to carry this structure to other server like this. Unfortunately, I could not run the applet. I couldn't make find the class for days.
I call the applet with the same method. You may ask that what kind of changes are there between two servers:
* PHP Version: from PHP 4 to PHP 5.5.5
* Applet path: from 'home/.../pages' to 'usr/.../pages'
* Apache version: to Apache 2.0
I couldn't guess the problem. I focused on the calling path string error but I tried almost every kind of writing types I also try "applet" tag but no result.
What may the problem be ?
Thanks for your help...