Forum Discussion
larsn
12 years agoContributor
For anyone else who happens upon this thread, know that SoapUI files are not saved as Java properties files - the spaces in the key names are not escaped with backslash, so you can't use:
At least for SoapUI v4.6.4
You have to write your own file parser (not hard at all).
def properties = new java.util.Properties();
properties.load( new java.io.FileInputStream( "C:\\def.txt" ));
At least for SoapUI v4.6.4
You have to write your own file parser (not hard at all).