11-14-2012, 02:52 AM
I think I have spotted a different behaviour between the Jumploader applet running under Java 6 or 7, which may be the cause of those problems.
The Java console reports (JRE 1.7.0_09-b05 Java HotSpot Server VM and JumpLoader v2.22.0) :
While the JS console has :
The error is in :
So, maybe making the change suggested in http://jumploader.com/forum/viewtopic.php?p=5844#5844 could help solve some issues.
To fix the problem, the change should be made in the "inc/inc.ClassUI.php" file, where one may replace the "function appletInitialized( )" definition by "function uploaderInitialized( )".
Hope this helps.
Best regards,
The Java console reports (JRE 1.7.0_09-b05 Java HotSpot Server VM and JumpLoader v2.22.0) :
Code:
13.11.2012 22:05:08 - ERROR - jl_15467078_appletMessagePumper - JS method call failed: appletInitialized
13.11.2012 22:05:08 - ERROR - jl_15467078_appletMessagePumper - netscape.javascript.JSException: JavaScript error while calling "appletInitialized"
at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
at jmaster.jumploader.app.JumpLoaderApplet.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
While the JS console has :
Code:
document.jumpLoaderApplet.getUploader is not a function
Code:
function appletInitialized( ) {
var uploader = document.jumpLoaderApplet.getUploader();
var attrSet = uploader.getAttributeSet();
var attr;
attr = attrSet.createStringAttribute( 'folderid', '58' );
attr.setSendToServer(true);
}
To fix the problem, the change should be made in the "inc/inc.ClassUI.php" file, where one may replace the "function appletInitialized( )" definition by "function uploaderInitialized( )".
Hope this helps.
Best regards,