blob: f491dbcb7e40c7e98554950c836736220fe8ac5b [file] [log] [blame]
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -04001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:citrus="http://www.citrusframework.org/schema/config"
5 xmlns:citrus-http="http://www.citrusframework.org/schema/http/config"
6 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
7
8 http://www.citrusframework.org/schema/http/config http://www.citrusframework.org/schema/http/config/citrus-http-config.xsd
9 http://www.citrusframework.org/schema/config http://www.citrusframework.org/schema/config/citrus-config.xsd">
10
11 <citrus:schema-repository id="schemaRepository">
12 <citrus:locations>
13 <citrus:location path="classpath:xsd/HelloService.xsd"/>
14 </citrus:locations>
15 </citrus:schema-repository>
16
17 <!-- Test Http REST client -->
18 <citrus-http:client
19 id="simulatorClient"
20 request-url="http://localhost:8080/services/rest/simulator"
21 timeout="5000"/>
22
23</beans>