Re: can load from URL wout --scripting?

2014-04-06 Thread A. Sundararajan
load is available always - regardless of -scripting option. If you are running under security manager, your app's permissions to resolve/read a URL will apply. Also, make sure that you can reach beyond your proxy, if any. i.e., you can download that .js file from your Java code at all, you sh

Re: can load from URL wout --scripting?

2014-04-06 Thread Hannes Wallnoefer
This works for me with plain jjs command: jjs> load("https://raw.github.com/lodash/lodash/2.4.1/dist/lodash.js";); Maybe it has something to do with your proxy settings. Did you test whether cURL/wget or similar command line tool work with the same URL? This might be useful: http://docs.orac