Hi,
My Comment inline.
Fullocto wrote:
Hello all,
I wonder what is the #context in the proxy configuration in a servicemix
cxf-SE.
It's ComponentContext from which you can access jbi bus the retrieve or
send messages
Is it optional? Or is it a need so the pojo can send/receive messages to the
proxy service?
It's not optional
Also is the type important: if I have type="myInterface"
Yes, the type is import, it's the SEI (service endpoint interface) for
ClientProxyFactory to create Proxy.
What are the requirement for myInterface: I have only to use method whose
parameters are the Java classes bound to the wsdl contract, haven't I?
It depend on which way you are using.
For code first way, there is no wsdl beforehand, what you have is the
interface, if you ensure you annotated your interface correctly, it's ok
For wsdl first way, since the interface is generated automatically
according to the wsdl, so yes, you have only to use method whose
parameters are the java classes bound to the wsdl contract
TY