Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Soap UI - where are the preferences/settings stored in Windows

I have Soap UI v5 which the trial has run out and I need to export the preferences, does anyone know where these are stored in Windows? Is it the registry or in a particular folder so I can easily import the same settings on another machine.

I'll also need the indivdual project settings too.

Thanks

like image 635
Zabs Avatar asked Dec 14 '22 16:12

Zabs


1 Answers

In windows 7 by default preferences are stored in $USER_HOME/default-soapui-workspace.xml and $USER_HOME/soapui-settings.xml.

default-soapui-workspace.xml is for the workspace (project names, where are stored, if they are closed...), looking here you can see also the xml path where your project data is stored (testCases,testSteps,request contents, assertions and so on).

<con:soapui-workspace name="Projects" soapui-version="5.0.0" xmlns:con="http://eviware.com/soapui/config">
  <con:settings/>
  <con:project name="MyProject">C:/Projectes/SOAPUI proj/NT-soapui-suport.xml</con:project>
  ...

soapui-settings.xml is for your soapui settings and properties configuration like http settings, ssl settings and so on.

Hope this helps,

like image 102
albciff Avatar answered Dec 28 '22 11:12

albciff