ContributionsMost RecentMost LikesSolutionsRe: TestRunner throwFailureException ... OK so found out how to get this to work within the c:\Users\username\.soapui and .soapuios folders a plugins folder exists, (with soapui closed) I renamed the folders to something other than plugins (i.e. XXplugins), then the testrunner works without erroring out for both cmd line invocation and within soapui Re: TestRunner throwFailureException ... Doesnt work for me running from cmd in admin mode SoapUI 5.4.0 TestCase Runner Configuring log4j from [C:\Program Files (x86)\SmartBear\SoapUI-5.4.0\bin\soapui-log4j.xml] 14:58:39,298 INFO [DefaultSoapUICore] initialized soapui-settings from [C:\Users\XXXX\soapui-settings.xml] 14:58:41,445 INFO [PluginManager] Adding plugin from [C:\Users\XXXX\.soapuios\plugins\ready-mqtt-plugin-dist.jar] 14:58:41,445 INFO [PluginManager] Adding plugin from [C:\Users\XXXX\.soapuios\plugins\soapui-swagger-plugin-2.2-dist.jar] 14:58:42,198 ERROR [SoapUI] An error occurred [com.eviware.soapui.plugins.auto.factories.AutoImportMethodFactory], see error log for details java.lang.ClassNotFoundException: com.eviware.soapui.plugins.auto.factories.AutoImportMethodFactory at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at com.eviware.soapui.plugins.LoaderBase.loadAutoFactories(LoaderBase.java:113) at com.eviware.soapui.plugins.LoaderBase.loadFactories(LoaderBase.java:80) at com.eviware.soapui.plugins.PluginLoader.loadPluginFactories(PluginLoader.java:141) at com.eviware.soapui.plugins.PluginLoader.loadPlugin(PluginLoader.java:104) at com.eviware.soapui.plugins.PluginLoader.loadPlugin(PluginLoader.java:54) at com.eviware.soapui.plugins.PluginManager.doInstallPlugin(PluginManager.java:141) at com.eviware.soapui.plugins.PluginManager.access$600(PluginManager.java:43) at com.eviware.soapui.plugins.PluginManager$LoadPluginsTask.computeSequentially(PluginManager.java:420) at com.eviware.soapui.plugins.PluginManager$LoadPluginsTask.compute(PluginManager.java:377) at com.eviware.soapui.plugins.PluginManager$LoadPluginsTask.compute(PluginManager.java:382) at com.eviware.soapui.plugins.PluginManager$LoadPluginsTask.compute(PluginManager.java:365) at java.util.concurrent.RecursiveTask.exec(Unknown Source) at java.util.concurrent.ForkJoinTask.doExec(Unknown Source) at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(Unknown Source) at java.util.concurrent.ForkJoinPool.runWorker(Unknown Source) at java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source) Re: Swagger import - groovy.json.JsonException: from SB regarding the html file "That is the Swagger documentation and not the Swagger spec file, the Swagger spec file is what we support for importing into Ready API. The Swagger specification only comes in two formats to use, JSON or YAML. We support both JSON and YAML." Re: Swagger import - groovy.json.JsonException: Hiya ok so it turns out that my JSON file needed to be saved in UTF-8 encoding as opposed to the UTF-8-BOM it was originally in, so worth remembering that one, imported without any apparent errors still have issues with using the html variant but one step closer regards Mike Re: Swagger import - groovy.json.JsonException: Hi I've had something very similar, reported to the helpdesk and the issue has been replicated, waiting on a fix, I'll update this post when I hear back from SB Re: Testing Websphere MQ with SOAPUI Hiya I appreciate that this is an old query but are there any updates, using hermes would be fine if there was some guidance as to the settings to use nad jar files to reference that would be rather helpful thanks Mike VirtServer Headless Deactivation Hi folks I'm trying to run a command that will silently deactivate my virtserver licence i can step through using the license manager with -jar /opt/VirtServer-2.0.2/ready-api-license-manager-1.1.jar -x then following the menu options however I want to do this without user interaction has anyone else done this?? thanks Mike Save Project pop ups should be limited to 1 instance With some projects in progress that haven't been saved the Save Project pop up is a useful reminder however if I were to step away from the keyboard for a period of time and then come back I shouldn't have to clear multiple pop ups for a project for each iteration that the timer kicks in to remind me to save it ServiceV DataSources name pane needs to be resizable Currently when viewing DataSources for a Virt within ServiceV the DS names have a '...' suffix if the name is too long to be displayed within the current view, if there are a couple of like named DS's then you cant distinguish between them unless you start looking at the DS contents if the DS name region was resizable this would be helpful Re: how to get datasource property value and assign it to a variable from Virt editor Hi not sure how you're trying to get the data from the data source but here's how I've done it // define datasource to use def virtDS = mockRequest.getContext().getMockService().dataSources.getVirtDataSource("DataSourceName") // reset DataSource to top record and get 1st row of data virtDS.prepare(requestContext.getMockRunner(), requestContext) def strmapDS = virtDS.next(requestContext.getMockRunner(), requestContext) // get data - These will reference the column names in your DS def dsHeader = strmapDS.get("Header", "value") def dsValue = strmapDS.get("Value", "value") //................... //get next row values by using strmapDS = virtDS.next(requestContext.getMockRunner(), requestContext)