2
votes
4answers
154 views
Java 6: Examples for implementing own scripting language using javax.script?
Hello!
I really can't find good examples for implementing own scripting language using
javax.script ...
I need just something to start.
Documentations
Examples
Tutorials
Videos
Presentations …
0
votes
2answers
72 views
How do I secure scripts run using javax.scripting?
I am using javax.scripting to add support for running arbitrary user-uploaded JavaScripts on the server-side. Obviously I want to secure those scripts!
Rhino, on it's own, has a framework for …
0
votes
3answers
196 views
Can I create a ‘window’ object for javascript running in the Java6 Rhino Script Engine
I want to run some Javascript on my Java6 server - i.e. using the javax.script API, specifically the Rhino Script Engine. (Although another solution would be acceptable)
The script file is created …
1
vote
2answers
509 views
Using the javax.script package for javascript with an external src attribute
Say I have some javascript that if run in a browser would be typed like this...
<script type="text/javascript"
src="http://someplace.net/stuff.ashx"></script>
<script …
