0
votes
1answer
30 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 …
0
votes
1answer
31 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 …
1
vote
2answers
247 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 us …
0
votes
3answers
346 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: ``impo …
1
vote
2answers
325 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 th …
3
votes
2answers
416 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
134 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("filelo …
