Hi,
I have a client declared as follows:
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setAddress("udp://127.0.0.1:9000/HelloWorld");
Map<String, Object> props = new HashMap<String,Object>();
factory.getInInterceptors().add(new StreamInterceptor());
props.put("cxf.synchronous.timeout", new Integer(600000));
factory.setProperties(props);
client = factory.create(HelloWorld.class);
client.send("hello");
I read here : http://cxf.apache.org/docs/udp-transport.html
I know an UDP client can receive multi-responses but i don't understand how
to configure the client ?
Can you please help me ?
Best regards,
THO