Tagged Questions
5
votes
4answers
181 views
Want to script a C# application
I need to run some validation tests on our c# client-server configuration.
Is there a dynamic script language that my client application could run, that would
have full access to all of its C# classes ...
2
votes
2answers
579 views
Fastest scripting language for Java?
I'm making a falling sand game in Java. I want users to be able to write their own engine for the game and I thought a scripting language might work for that. I've tried out a small script with jython ...
1
vote
1answer
52 views
how to make methods in beanshell?
I made a simple beanshell ide in android using an edittext and a button. When the button is clicked, Interpreter.eval() is called and edittext.getText().toString() is passed in as the parameter. I ...
1
vote
1answer
43 views
Can I pass arguments to a external Beanshell script, sourced from another Beanshell script?
I am trying to figure out how to pass arguments to a second script that I call from an initial script. The Beanshell documentation says nothing about this. Does anyone know how to do this?
// ...
0
votes
2answers
104 views
JDBC connection with Beanshell
Other similar questions on StackOverflow didn't answer my question in this area. I have this script that doesn't work, and I am wondering how to get it to work:
// beanshell script script.bsh
...
0
votes
1answer
98 views
Advice for embedding a Java scripting language for debugging/remote admin
I have a fairly sophisticated server-side application which frequently requires me to see what is going on with its internals to debug and fix problems.
I've therefore embedded a Beanshell instance, ...
0
votes
1answer
485 views
Executing script inside method with BeanShell
I'm not really sure how I can explain this, but here goes:
I want to be able to "insert" some commands into parts of my code which will be loaded from external files. To parse and execute these ...