Hi, I have what should be a simple question but I can't seem to figure this one out.
I have the following bean defined:
The maxConnectionsPerHost property actually needs to be of type java.util.Properties. How would I go about setting that?Code:<bean id="messageSender" class="org.springframework.ws.transport.http.CommonsHttpMessageSender"> <property name="connectionTimeout" value="15000"/> <property name="readTimeout" value="60000"/> <property name="maxTotalConnections" value="20"/> <property name="maxConnectionsPerHost" value=""/> </bean>
Thanks-


Reply With Quote