Hi,
For the WS client i use spring shown in the sample. The myServiceClient
bean is used in another bean..
How can I set
<jaxws:properties>
<entry key="mtom-enabled" value="true"/>
</jaxws:properties>
here?
----SAMPLE-----
<bean id="myServiceClient"
class="com.encoway.appbase.impl.catalogue.sync.CatalogueSyncWebService"
factory-bean=" myServiceClientFacotry" factory-method="create">
</bean>
<bean id=" myServiceClientFacotry "
class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
<property name="serviceClass" value="com.MyServiceInterface" />
<property name="address" value="${myWebServiceAddress}" />
</bean>
----SAMPLE-----
Thanks!
Dirk