JavaCard Tookit 2.2.1 / converter warning
Hello,
when I convert APPLETS with the converter tool I get a Warning:
You did not supply export filefor the previous minor version of thepackage
What exactly does this mean ?
As far as I can tell my applets do not have any porblem !
Thanx in advance
[355 byte] By [
arkadycca] at [2007-11-26 20:05:01]

# 1
you have to inform the jc api used.
Try to create a opt (app.opt for example) file with the content:
-out EXP JCA CAP
-d [destination_folder]
-classdir [base dir of your classes]
-exportpath %JC_HOME%\api_export_files
-applet 0xa0:0x00:0x00:0x00:0x00:0x01 com.yourpackage.YourAppletClass
com.yourpackage
0xa0:0x00:0x00:0x00:0x00 1.0
and then call
converter -config app.opt
change AIDs values by yours.
I hope that it helped you.
Regards,
Igor Medeiros
# 2
Hello Igor_Medeiros,
sorry, but I have no trouble converting my Applets.
I do not use a opt File.
I call the Converter with an ANT Script setting all the Parameters as command line Parameters.
My Applet is working correctly !
What I do not understand is why I'm getting this warning !
Regards