1
vote
3answers
95 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).
…
0
votes
1answer
34 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
49 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 …
1
vote
2answers
283 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 …
0
votes
3answers
382 views
How to debug a beanshell script?
Hey Guys,
I have troubles to debug a beanshell script all I get all the time is:
Exception invoking imported object method. : at Line: 194 : in file: inline evaluation of: ``import …
1
vote
2answers
348 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:
…
3
votes
2answers
440 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) { }
1
vote
2answers
140 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 …
