0

Is it possible to include the local_policy and US_export_policy jars in my java application or in the JRE running on the enduser's system?

Or is it still only possible to replace both files?

user207421
  • 305,947
  • 44
  • 307
  • 483
p4tm4n
  • 73
  • 1
  • 9

1 Answers1

0

Is it possible to include the local_policy and US_export_policy jars in my java application

No.

or in the JRE running on the enduser's system?

Yes, that's how it has to be done. Installed in the target JRE.

Or is it still only possible to replace both files?

I don't understand what difference you think there is between this question and the last part of the previous one. There isn't any.

user207421
  • 305,947
  • 44
  • 307
  • 483
  • include in the JRE meaning configure somewhere a path to the new policy jars without replacing the existing jars. – p4tm4n May 27 '14 at 10:47