http://cxf.apache.org/javadoc/latest/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.html
mentions the support of setting properties. Also the jaxws:client support
this, e.g.:
<jaxws:endpoint
id="helloWorld"
implementor="demo.spring.HelloWorldImpl"
address="http://localhost/HelloWorld">
<jaxws:inInterceptors>
<bean class="com.acme.SomeInterceptor"/>
<ref bean="anotherInterceptor"/>
</jaxws:inInterceptor>
<jaxws:properties>
<entry key="mtom-enabled" value="true"/>
</jaxws:properties>
</jaxws:endpoint>
What kind of properties can be set? Is there a list available?
I was hoping to set connect and read timeouts here.
Cheers,
Marcel
--
View this message in context:
http://cxf.547215.n5.nabble.com/Setting-timeout-in-jaxws-client-JaxWsProxyFactoryBean-tp5732861.html
Sent from the cxf-user mailing list archive at Nabble.com.