Hi Benoît,
I have checked into the servicemix-file component. Regarding the
FileSenderEndpoint, it supports InOnly and InOut MEP: it contains
processInOnly() and processInOut() methods.
Nevertheless the processInOut() method simply calls the super class
processInOut() method aka the ProviderEndpoint class.
Let me try.
Regards
JB
Benoît Clouet wrote:
Hi,
I'm currently trying to implement a cxf-bc consumer to file-bc sender
exchange. A WSDL defines the messages (IN and OUT) and is referenced by
the cxf-bc. The client of the cxf web service expects some ack as a
response to the webservice call.
An XML to csv transformation is done at file marshaller level.
My first try results in an unsupported MEP error. I guess it is because
the file-bc only supports in-only MEP.
I know I could achieve this by using a bean-se, but I really would like
to leverage the file component functionalities. Is there a way to work
this around either at the cxf level or by using some other component
like the camel-se ? Should I consider another approach ?
Benoît