All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eviware.soapui.resources.mockaswar.web.xml Maven / Gradle / Ivy

Go to download

This plugin adds new features and bug fixes to SmartBear soapui-pro-maven-plugin/soapui-maven-plugin.

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2013 Thomas Bouffard (redfish4ktc)
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~   http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied.  See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	id="WebApp_ID" version="2.5">
	<servlet>
		<description></description>
		<display-name>SoapUIMockServlet</display-name>
		<servlet-name>SoapUIMockServlet</servlet-name>
		<servlet-class>com.eviware.soapui.mockaswar.MockAsWarProServlet</servlet-class>
		<init-param>
			<description>project file path</description>
			<param-name>projectFile</param-name>
			<param-value>WEB-INF/soapui/[ProjectFileName]</param-value>
		</init-param>
		<init-param>
			<description>enable Web UI</description>
			<param-name>enableWebUI</param-name>
			<param-value>true</param-value>
		</init-param>
		<init-param>
			<description>global settings file</description>
			<param-name>soapUISettings</param-name>
			<param-value>[SoapUISettings]</param-value>
		</init-param>
		<init-param>
			<description>set listeners directory</description>
			<param-name>listeners</param-name>
			<param-value>WEB-INF/listeners</param-value>
		</init-param>
		<init-param>
			<description>set actions directory</description>
			<param-name>actions</param-name>
			<param-value>WEB-INF/actions</param-value>
		</init-param>
		<init-param>
			<description>set scripts directory</description>
			<param-name>scripts</param-name>
			<param-value>WEB-INF/scripts</param-value>
		</init-param>
		<init-param>
			<description>set MockService endpoint used in generated WSDLs and schemas</description>
			<param-name>mockServiceEndpoint</param-name>
			<param-value>[mockServiceEndpoint]</param-value>
		</init-param>
	</servlet>
	<servlet-mapping>
		<servlet-name>SoapUIMockServlet</servlet-name>
		<url-pattern>/*</url-pattern>
	</servlet-mapping>
</web-app>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy