Object to Object in WebService Integration Tier
Hello,
I'm working in a Financial application.
We use WebService as main datastore.
So, i designed a facade for WebService integration into the Application.
With a SOAP engine (Axis, Xfire) a have generated Class representing the message info and request/respond for the webservice.
In the Application, i designed a Business Model and the WebService Model is different.
My needs :
What is the best way to map WebService Object to the Application Business Model in a flexible and configurable way ?
I though about a "Service" to provide such a Mapping.
But, i want the ervice to be flexible a modifiable (not mapping hard coded)
This is probably not 100% OO Pattern question but ...

