Re: [google-appengine] Re: javax.script support on Appengine

2015-04-16 Thread Randy Balaban
This post has a deleted post. I believe it was mine. Does anyone have a copy of what I typed? -- 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 google-appe

[google-appengine] Re: javax.script support on Appengine

2014-04-22 Thread Randy Balaban
I deployed the app to Amazon's Elastic Beanstalk server with no issues at all. :( -Randy -- 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 google-appengine+

[google-appengine] Re: javax.script support on Appengine

2014-04-22 Thread Randy Balaban
I am having a similar issue where I always get a 0 value returned when I try to use the ScriptEngine eval. By using Logger, I was able to determine that there are NullPointerExceptions being generated. After further inspection, it appears that GAE doesn't always return a valid script engine

Re: [google-appengine] javax.script support on Appengine

2014-04-22 Thread Randy Balaban
Hi, I am having a similar issue. It appears that GAE doesn't always return the the script engine, for I get a NULL Exception. My code looks like: public double myEval(String JsFormulaStr ) { double solutionValue = 0; ScriptEngineManager mgr = new ScriptEngineManager();