LWJGL Applet Loader problems

my applet programme now need files “xx.dll” to work
how do i do ?
because the windows_natives.jar(including dll files) is presigned,
and i put the lwjgl’s dll files and xx.dll together to a jar.whether sign this jar or not sign this jar,my programme is not working.
what should i do ?thanks,appreciated…

Firstly to use your own native files (in addition to the LWJGL natives) you need to sign the jar containing the native files yourself.

Secondly do keep in mind that for each certificate in a signed jar there will be a security permissions dialog shown, so ideally you only want a maximum of one dialog shown to the user. So you will need to sign all the jars with your own certificate and not use the LWJGL presigned certificate. Do remember to either remove the LWJGL certificate from the presigned jars or use unsigned jars since signing a jar which already contains a certificate will not remove/replace that certificate but will add to it.

In case it makes things easier, you can store natives in multiple jars and are not limited to one native jar. e.g. . But do keep in mind that the certificate(s) for any native jar(s) must be the same as the certificate(s) in lwjgl_util_applet.jar.

This entry and the four sections underneath should be able to help you if you mean the default lwjgl files :slight_smile:

http://www.lwjgl.org/wiki/index.php?title=Deploying_with_the_LWJGL_Applet_Loader_-_Introduction

Mike

ok,thank you very very much ;D

thank you !!thank you !!thank you !!
thank you !!thank you !!thank you !!
it works!
i signed lwjgl_util_applet.jar windows_natives.jar myown_windows_natives.jar with the same certificate, and it works :smiley:
and i put it like follows:

. really appreciate your help !very very very thanks!you give me a big help ;D