Tagged Questions

Lightweight scripting for Java

learn more… | top users | synonyms

5
votes
2answers
566 views

Should I use Jython, JRuby, Beanshell, Groovy, Rhino, or what for this small task?

I have some batch data-manipulation scripts which support a small business website. The scripts are a "rat's nest" of Perl, Java, and Stored Procedures, which run on a scheduled basis to update data ...
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 ...
4
votes
2answers
617 views

Can I strictly evaluate a boolean expression stored as a string in Java?

I would like to be able to evaluate an boolean expression stored as a string, like the following: "hello" == "goodbye" && 100 < 101 I know that there are tons of questions like this on ...
4
votes
3answers
3k views

Beanshell in Ant yielding, “Unable to create javax script engine for beanshell”

Greeting, I'm trying to put some Beanshell script in my Ant build.xml file. I've followed the Ant manual as well as I can but I keep getting "Unable to create javax script engine for beanshell" when ...
3
votes
0answers
76 views

Beanshell will not allow me to add jars to the “default” JRE classloader?

I have a question about Beanshell that I can't find an answer to anywhere. I am only able to run Beanshell scripts in 1 of 2 ways: Where Classpath is defined before invoking Beanshell and Beanshell ...
3
votes
8answers
376 views

How would someone implement mathematical formulae in Java?

How would someone implement mathematical formulae in Java? What I mean, the user inputs a string with multiple variables. Like a simple quadratic formula: x^2 + 5x + 10. Or in Java: (Math.pow(x,2)) + ...
3
votes
5answers
368 views

For what types of programming tasks would I consider using beanshell?

Currently researching Bean Shell. I would like to get some input as to what types of programming tasks I would consider using Bean Shell? ...And what could replace Bean Shell for that task. Thanks ...
3
votes
2answers
2k views

How do I pass a variable from one Thread Group to another in JMeter

I have a JMeter test with 2 Thread Groups - the first is a single thread (which creates some inventory) and the second has multiple threads (which purchase all the inventory). I use BeanShell ...
3
votes
2answers
971 views

Beanshell catch(ex): Exception or Throwable?

What type of exception is caught by the beanshell catch(ex): Exception or Throwable?. Example: try { .... } catch (ex) { }
2
votes
2answers
580 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 ...
2
votes
1answer
250 views

Beanshell not equal statement

What is if not equal statement in beanshell ? if this is equal : if ("myVarValue".equals(vars.get("MY_VARIABLE")))
1
vote
0answers
16 views

newbie using beanshell on google app engine for java

I am very new to Beanshell scripting...I have with me an existing application that uses beanshell...I want to port this app to Google App Engine. I went to ...
1
vote
1answer
53 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
0answers
74 views

JMeter - Execute command over telnet using beanshell

I'm trying to write a jmeter sampler in beanshell to execute a memcached telnet interface command, specifically flush_all. I need this to clear the cache after each test as it causes tests in quick ...
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? // ...
1
vote
1answer
80 views

Beanshell won't load my dynamically added JDBC Driver class?

Using JDK1.6.0_16, I have this simple program where I am trying to get beanshell 2.0b4 to load a .jar dynamically (as the documentation suggests it will do) and I am having no luck. The ...
1
vote
0answers
23 views

Is it possible to access Beanshell objects from C#?

I have a C# application that's launched from beanshell code. Is it possible for this C# application have access to objects contained in the beanshell code? For example, in my beanshell code, I have ...
1
vote
2answers
96 views

Choosing scripting language

I'm trying to choose between groovy and beanshell, I need one that is in active development, is moderately fast, can access/interpret java code and support restriction to which java classes it can ...
1
vote
1answer
174 views

Looking for BeanShell Validator plugin for Eclipse

I have inherited a Java WebApp that contains the majority of its business logic in a 16K line BeanShell File. I am looking for something that will validate my BeanShell files so I know at least it is ...
1
vote
3answers
190 views

Is there an alternative to BeanShell ? Something like javascript or groovy console for Java?

I was wondering if there is some kind of shell that would just listen to user input (with a line buffer) and run in internally from within main method, including jdk on classpath. So that it would ...
1
vote
0answers
95 views

How to capture output from Beanshell

I've been using BeanShell to interpret simple files that just do some calculations and then output to the console. Thing is, I want to grab the output. Such that from System.out.println("test"); I can ...
1
vote
1answer
119 views

Looking for: IntelliJ IDEA plugin with BeanShell syntax support

I was wondering if there is a plugin to support the BeanShell scripting framework in IntelliJ IDEA? Setting the *.bsh file type as a Java source causes all sort of bad syntax warnings. Thank you,
1
vote
2answers
77 views

Beanshell XOR throwing error

When I try to use the xor operator: if(a ^ b) I get the following error: internal Error: unimplemented binary operator Is there another way to do it in beanshell, or should I just do: if((a ...
1
vote
2answers
2k views

How to to extract response by XPath Extractor in JMeter?

I got the response like the following: <response> <status code='200' server_time='xxx' /> <tests> <test id='1' name='a!' status='Started' /> <test id='2' ...
1
vote
1answer
158 views

beanshell jdbc connection, class loading

i want to connect to a hsqldb in beanshell script. i had problems while loading class, i wrote it before and it was replied. the code looks like that: Connection conn = null; try { ...
1
vote
3answers
500 views

Using Ivy to download/install ant-contrib, bsf, beanshell, commons-logging

I am building a project using Ant and Ivy. The build.xml file depends on ant-contrib, bean scripting framework, beanshell, and commons-logging. Ant searches for libraries in several places, including ...
1
vote
1answer
130 views

Beanshell equivalent for .Net

Is there anything like Beanshell, which exposes CLR classes instead of Java classes, and lets you write scripts in C# or VB.Net (or any .Net language for that matter) Should come in handy to test ...
1
vote
3answers
686 views

Can I write to the Beanshell console from Java?

I'm using Beanshell as an embedded debugging tool in my app. It means I can telnet to my app and poke around with its internals while it is running (I typically wrap the telnet session with rlwrap). ...
1
vote
2answers
320 views

Is there a groovy equivalent to the beanshell source() method?

I've scoured the groovy doc and haven't found an analogue, but things there are organized a bit haphazardly. I'm switching from beanshell to groovy and was using the source("fileloc") method in ...
1
vote
2answers
919 views

JEdit Macro - Open and Save File

I have a JEdit (BeanShell) macro which opens a specific file then immediately saves the file to my c:\temp folder (so that I don't accidentally update the real file). Here is the bean shell code: ...
0
votes
0answers
5 views

What's an elegant solution in beanshell for loops and arrays

I'm working with beanshell to parse SWIFT data and need to extract values by referencing these SWIFT tags. Right now, I statically get these values as such: String getACRU = ...
0
votes
2answers
36 views

How can I goose bean shell into operating as a math parser?

I am using a Bean Shell interpreter in a for loop like this for(int i = 0; i <functionSize; i++){ interpreter.set("x", i); yvalues[i] = (Integer) ...
0
votes
0answers
21 views

How to adjust and execute Ant task from BeanShell script?

I have large jar task in my ant build file. But I don't want to execute it immediately. I want to add some filesets to the task and only than execute it. I don't want to define the jar task completely ...
0
votes
2answers
109 views

Java Beanshell scripting with args[] to the the program?

The Beanshell documentation implies that you can run a script using this format on the command line: java bsh.Interpreter script.bsh [args] The only problem with this is that I cannot get it to ...
0
votes
2answers
106 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
35 views

Protect Groovy/BeanShell Generated Classes

I'm planning to embed groovy/beanshell in my app but I'm concerned about protecting the script and any dynamically generated classes from been viewed and modified by users to access my app codes. The ...
0
votes
0answers
85 views

URL mainpulating i.e a fake URL in ofbiz based on JAVA frame work

I would re-write the letter as following and would also inclue details around what has already been done. See below. Hi, We are a company proving ofbiz service to clients overseas and are currently ...
0
votes
1answer
65 views

Does anyone know how to access the username and password from the Login Config Element in jMeter inside of a BeanShell?

Does anyone know how to access the username and password from the Login Config Element in jMeter inside of a BeanShell? I am trying to access the Login Config Element from and HTTPRequest also. I ...
0
votes
1answer
140 views

Cant run beanshell in command line

Am reading the book Algorithms of the intelligent web by Haralambos Marmanis and Dmitry Babenko. Am trying to run the scripts in the book using beanshell. I can run java and ant in my command line ...
0
votes
1answer
43 views

Resolving tokens in Beanshell

I want to use beanshell (bsh) to evaluate user defined expressions. I want to allow those expressions to have a kind of macro substitution for example: boolean isTrue = i.eval("@something == 5"); Is ...
0
votes
1answer
96 views

Can Anthill Beanshell script make a HTTP connection?

I use Anthill Pro for build and deployment management. I'm attempting to configure Anthill to make a HTTP POST or GET to a web server after a deployment has completed. I'm passing basic information ...
0
votes
3answers
2k views

In JMeter and BeanShell, how can I make a variable lowercase?

In JMeter's User Parameters, how can I make a variable lowercase? Left column my_lowercase_variable Right column ${__BeanShell('${my_variable}'.toLowerCase())} //fails or ...
0
votes
0answers
74 views

How to integrate BeanShell Scripting Language into Struts 2 framework?

How to integrate BeanShell Scripting language into Struts 2 framework. I googled and got BSF article providing instructions to use along with Struts 1.X version and it won't work with Struts2 because ...
0
votes
1answer
106 views

Formatter for beanshell inside of XML

I've been looking for a formatter that will format beanshell inside of XML. Really, I just want something that will make sure my tabbing is correct for control loops. <xml> <script ...
0
votes
2answers
375 views

Beanshell jdbc connection

i want to connect to my database using beanshell script. my code works with java but beanshell doesn't work with the same code. Class not found exception will be thrown. does it have other usage or ...
0
votes
1answer
42 views

Is there a Java database API which I can use exclusively from beanshell?

I am coming from the ruby world and want to be able to use Java to interactively create objects and query the database like with IRB. Which Java database APIs work with beanshell?
0
votes
1answer
484 views

How to execute java class from Jmeter

Is there a way to execute java class from jmeter? I've packaged my class with maven assembly and put it in the lib folder of JMETER_HOME. Then I created BSF Listener inside my test case and wrote : ...
0
votes
1answer
53 views

beanshell equivalent of continue

Is there a beanshell equivalent of java continue ? ex : if(...cond){ dosomething(); continue; } If question is not clear I mean continue keyword from this example : ...
0
votes
1answer
224 views

beanshell inner class

i wanted to use my java code as beanshell script but beanshell throws Exception saying class not found in namespace. Isn't there inner class in beanshell or does it have any other usage? my script ...
0
votes
2answers
133 views

Beanshell java.lang.NoClassDefFoundError

i wrote java code in beanshell but it throws java.lang.NoClassDefFoundError by defining DefaultHandler. I have already imported it, i don't understand why is this exception thrown. My Code looks like ...

1 2