hot questions tagged beanshell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:25:14Z http://stackoverflow.com/feeds/tag?tagnames=beanshell&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1760917/can-i-write-to-the-beanshell-console-from-java 1 Can I write to the Beanshell console from Java? sanity 2009-11-19T04:40:22Z 2009-12-01T13:48:48Z <p>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).</p> <p>The problem is that the only way I've found to print to the Beanshell console, rather than stdout of the application itself, is the print() method within Beanshell.</p> <p>But I'd like to write code in Java that I can call from Beanshell, which will output to the Beanshell console - ie. it will be shown in my telnet session, not sent to stdout of the application, as happens if you try to use System.out or System.err.</p> <p>Is this possible?</p> <p><hr></p> <p>edit: To further clarify, I'm setting up a Beanshell server as follows:</p> <pre><code>public static void setUpBeanshell() { try { i.setShowResults(true); i.eval(new InputStreamReader(Bsh.class.getResourceAsStream("init.bsh"))); i.eval("server(" + Main.globalConfig.beanShellPort + ");"); } catch (final EvalError e) { Main.log.error("Error generated while starting BeanShell server", e); } } </code></pre> <p>How would I modify this such that I can write a Java function that outputs to the telnet session (rather than to System.out of my application)</p> http://stackoverflow.com/questions/1572985/advice-for-embedding-a-java-scripting-language-for-debugging-remote-admin 0 Advice for embedding a Java scripting language for debugging/remote admin sanity 2009-10-15T15:07:04Z 2009-10-15T15:26:39Z <p>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.</p> <p>I've therefore embedded a Beanshell instance, which I can telnet into (normally over a ssh tunnel), but I'm wondering if there is a better way.</p> <p>A few limitations:</p> <ul> <li>No readline support, which I can get around by using 'rlwrap' on telnet, but its not ideal</li> <li>Tab-completion of variables and methods would be really nice, but I haven't found a way to do this</li> <li>Pre-defining variables (to access stuff I need to access frequently) doesn't seem to work, I have to pre-define functions instead</li> </ul> <p>All-in-all its rather clunky, although Beanshell has the nice advantage that its a super-set of Java, so nobody needs to learn another programming language to use it.</p> <p>I'm wondering if others have any experience with facilitating remote debugging/administration via a scripting language (Beanshell or otherwise), perhaps someone has found a better approach.</p> http://stackoverflow.com/questions/1407817/executing-script-inside-method-with-beanshell 0 Executing script inside method with BeanShell pg-robban 2009-09-10T21:26:10Z 2009-09-10T21:37:55Z <p>I'm not really sure how I can explain this, but here goes:</p> <p>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 commands, I presumably have to use some scripting like BeanShell's eval method. The problem is that it doesn't seem to recognize the instance/method it's inside of. As a very basic example, I want to do something like</p> <pre><code> public void somethingHappens() { Foo foo = new Foo(); Interpreter i = new Interpreter(); i.eval("print(foo.getName());"); } </code></pre> <p>Is this possible? Should I use other scripting tools?</p> http://stackoverflow.com/questions/707832/how-do-i-pass-a-variable-from-one-thread-group-to-another-in-jmeter 1 How do I pass a variable from one Thread Group to another in JMeter Todd R 2009-04-02T00:08:52Z 2009-04-02T15:16:36Z <p>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 Assertions and XPath Extractors to parse the returned value (which is XML) and store variables (such as the ids of the items to be purchased). </p> <p>But, values that are created in the first Thread Group, whether extracted into standard ${jmeter} type variables, or ${__BeanShell(vars.get("jmeter"))} type vars, are not available in the second Thread Group. Is there anyway to create a variable in the first Thread Group and make it visible to the second?</p> http://stackoverflow.com/questions/475025/how-to-debug-a-beanshell-script 0 How to debug a beanshell script? Denis 2009-01-23T23:13:26Z 2009-06-12T18:00:04Z <p>Hey Guys,</p> <p>I have troubles to debug a beanshell script all I get all the time is:</p> <p>Exception invoking imported object method. : at Line: 194 : in file: inline evaluation of: ``import java.lang.reflect.InvocationTargetException; import java.util.Arrays; i . . . '' : migrateModels ( models , apiManager , isSAPRetailImportCondition , isSAPAFSCondition ) </p> <p>Called from method: initMissingImportSources : at Line: -1 : in file: : Target exception: java.lang.reflect.InvocationTargetException</p> <pre><code>at bsh.BshMethod.invoke(Unknown Source) at bsh.BshMethod.invoke(Unknown Source) at bsh.Name.invokeLocalMethod(Unknown Source) at bsh.Name.invokeMethod(Unknown Source) at bsh.BSHMethodInvocation.eval(Unknown Source) at bsh.BSHPrimaryExpression.eval(Unknown Source) at bsh.BSHPrimaryExpression.eval(Unknown Source) at bsh.BSHBlock.evalBlock(Unknown Source) at bsh.BSHBlock.eval(Unknown Source) at bsh.BshMethod.invokeImpl(Unknown Source) at bsh.BshMethod.invoke(Unknown Source) at bsh.BshMethod.invoke(Unknown Source) at bsh.This.invokeMethod(Unknown Source) at ImportSourceMigration.initMissingImportSources(BeanShell Generated via ASM (www.objectweb.org)) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at bsh.Reflect.invokeMethod(Unknown Source) at bsh.Reflect.invokeObjectMethod(Unknown Source) at bsh.Name.invokeMethod(Unknown Source) at bsh.BSHMethodInvocation.eval(Unknown Source) at bsh.BSHPrimaryExpression.eval(Unknown Source) at bsh.BSHPrimaryExpression.eval(Unknown Source) at bsh.BSHBlock.evalBlock(Unknown Source) at bsh.BSHBlock.eval(Unknown Source) at bsh.BSHBlock.eval(Unknown Source) at bsh.BSHTryStatement.eval(Unknown Source) at bsh.Interpreter.eval(Unknown Source) at bsh.Interpreter.eval(Unknown Source) at bsh.Interpreter.eval(Unknown Source) at bsh.servlet.BshServlet.evalScript(Unknown Source) at bsh.servlet.BshServlet.doGet(Unknown Source) </code></pre> <p>I am trying to retrieve the full stack trace with this code</p> <pre><code> try { migration.initMissingImportSources(); } catch (java.lang.Throwable e) { print(ExceptionUtils.getFullStackTrace(e)); } </code></pre> <p>Is there a possibility to retrieve the causing exception?</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/295956/jedit-macro-open-and-save-file 1 JEdit Macro - Open and Save File AJ 2008-11-17T15:56:07Z 2008-11-18T09:55:42Z <p>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). </p> <p>Here is the bean shell code: </p> <pre><code>logFilePath = "c:\\temp\\aj.txt"; jEdit.openFile( view , logFilePath ); _buffer = jEdit.getBuffer(logFilePath); _buffer.save(view,"c:\\temp\\backup.txt",true); </code></pre> <p>This gives me the following error: </p> <pre><code>I/O Error Each buffer can only execute one input/output operation at a time. Please wait until the current operation finishes (or abort it in the I/O progress monitor) before starting another one. </code></pre> <p>I have tried adding a while loop to wait until <code> buffer.isLoaded() </code> is true, but that just goes into an infinite loop.<br /> What does seem to work is popping up a message box (<code> Macros.message </code>). However, I really don't want to have this unnecessary dialogue. </p> <p>I don't know much java, so please tell me if I'm making a rookie mistake. </p> <h2>Update:</h2> <p>Added my own answer to show the code pointed to from <a href="http://stackoverflow.com/users/34009/serhii">Serhii's answer</a>. </p> http://stackoverflow.com/questions/227667/beanshell-catchex-exception-or-throwable 3 Beanshell catch(ex): Exception or Throwable? Antonio 2008-10-22T21:49:09Z 2009-02-13T20:52:24Z <p>What type of exception is caught by the beanshell catch(ex): Exception or Throwable?.</p> <p>Example:</p> <pre><code>try { .... } catch (ex) { } </code></pre> http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method 1 Is there a groovy equivalent to the beanshell source() method? Zach 2008-11-19T19:48:52Z 2008-11-20T19:06:48Z <p>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 beanshell to inline-include other, utility beanshell scripts for reuse. Is there a standard function to do this in groovy or a best practice?</p>