Forum Discussion
SoapUIAmateur
12 years agoNew Contributor
Thanks guys
I did follow those links suggested to fix the war generation process.
However, the web.xml file generated the relative path files to projectFile and SoupUISettings missing a forward slash in front in order for Tomcat 8.0 resolve the path :
<init-param>
<description>project file path</description>
<param-name>projectFile</param-name>
<param-value>WEB-INF/soapui/BMS-soapui-project.xml</param-value>
</init-param>
<init-param>
<description>global settings file</description>
<param-name>SoapUISettings</param-name>
<param-value>WEB-INF/soapui/soapui-settings.xml</param-value>
</init-param>
After changing the <param-value>/WEB-INF/soapui/BMS-soapui-project.xml</param-value> and <param-value>/WEB-INF/soapui/soapui-settings.xml</param-value> it works.
Cheers
SoapUIAmateur
I did follow those links suggested to fix the war generation process.
However, the web.xml file generated the relative path files to projectFile and SoupUISettings missing a forward slash in front in order for Tomcat 8.0 resolve the path :
<init-param>
<description>project file path</description>
<param-name>projectFile</param-name>
<param-value>WEB-INF/soapui/BMS-soapui-project.xml</param-value>
</init-param>
<init-param>
<description>global settings file</description>
<param-name>SoapUISettings</param-name>
<param-value>WEB-INF/soapui/soapui-settings.xml</param-value>
</init-param>
After changing the <param-value>/WEB-INF/soapui/BMS-soapui-project.xml</param-value> and <param-value>/WEB-INF/soapui/soapui-settings.xml</param-value> it works.
Cheers
SoapUIAmateur