How to fix the issue with Applet dropdown choice boxes not working in Java 1.7? -
i searched issue , didn't find related questions or answers. have applet data entry application developed more 15 years ago using powerj tool in java 1.2. applet contains awt dropdown choice boxes user selects value , gets processed , saved database. working fine including in java 1.6 until installed java 1.7 update 25 on machine. spontaneously values not being recognized , leads kinds of incorrect behavior. thing see java console in terms of errors is:
missing permissions manifest attribute missing codebase manifest attribute
i put printout statements in code 1 of choice boxes debugging follows:
_loc_nepa = choice_loc_nepa.getselecteditem().trim(); system.out.println("choice_loc_nepa.getselectedindex() = " + choice_loc_nepa.getselectedindex()); system.out.println("_loc_nepa = " + _loc_nepa );
the current value 'n'. value captured in java console follows:
choice_loc_nepa.getselectedindex() = 0 _loc_nepa =
does have solution? thank in advance help.
Comments
Post a Comment