I can\'t seem to find any character encoding options in SoapUI preferences.
I want to mock xml response in iso-8859-1 encoding
You may choose either of the following approach.
Changing the defualt encoding
JAVA_OPTS, then you can add there below line in a new line
set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding="iso-8859-1" on windowsexport JAVA_OPTS=$JAVA_OPTS -Dfile.encoding="iso-8859-1" on unixSoapUI.It should take default encoding as iso-8859-1.
Alternatively, message specific:
Otherwise, you may use message specific character encoding using http headersfor that specific one in the following way:
Set a new header for request / response.
Header Key/name:Content-Type
Header Value :text/xml; charset=iso-8859-1