
wstarget.system1.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EventDistributor Show documentation
Show all versions of EventDistributor Show documentation
RDBMS based messaging as an alternative to other standard messaging like JMS / Kafka
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"> <bean id="system1Caller1" factory-bean="callerFactory1" factory-method="getCaller"></bean> <bean id="callerFactory1" class="org.simple4j.wsclient.caller.FreeMarkerJSONCallerFactory"> <property name="httpWSClient" ref="httpWSClient1" /> <property name="jSONConfigFile" value="classpath:wstarget/system1.json" /> <property name="responseBodyParsers"> <map> <entry key="(200)|(404)|(403)"> <bean id="jsonBodyParser" class="org.simple4j.wsclient.parser.impl.JSONParser"> </bean> </entry> </map> </property> </bean> <bean id="httpWSClient1" class="org.simple4j.wsclient.http.HTTPWSClient"> <property name="connectionTimeOutMillis" value="1000"></property> <property name="maxConnectionsPerHost" value="10"></property> <property name="numberOfRetries" value="2"></property> <property name="serviceHostName" value="localhost"></property> <property name="servicePortNumber" value="2001"></property> <property name="serviceProtocol" value="http"></property> <property name="socketTimeOutMillis" value="3000"></property> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy