On Sat, Jan 3, 2015 at 7:41 PM, Jaroslav Záruba <[email protected]> wrote: > > What is the proper way of using message sources on AppEngine please? > > This is what I've bumped into: > java.lang.NoClassDefFoundError: java.util.ResourceBundle$Control is a > restricted class. Please see the Google App Engine developer's guide for > more details. >
Is your source file saved as a UTF8 character encoding? If so, can you try resaving the file as a ISO-8859-1 encoding, and see if that solves your issue? An explanation of how to convert is here: http://stackoverflow.com/a/4660195 If everything else fails, you can move to using Managed VMs ( https://cloud.google.com/appengine/docs/managed-vms/ ) where you can use restricted classes. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
