Thank you very much for your response.
I implemented an application including a server component and a client component
as indicated by
Using Distributed Services with iPOJO.
However, it uses TCP for client-server communication
I tried to declare the server with the "org.apache.cxf.ws.address" property with UDP as "udp://localhost:9090/service".
Example:
<property name="service.exported.interfaces" value="*" />
<property name="service.exported.configs" value="org.apache.cxf.ws" />
<property name="org.apache.cxf.ws.address" value="udp://localhost:9090/service" />
However, i received an error:
Unknown protocol: udp
I'm using the package cxf-dosgi-ri-singlebundle-distribution-1.1.jar for client-server communication
Could you please give me some advices?