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 ...

[750 byte] By [sdegardina] at [2007-11-26 19:25:36]
# 1
If the WebService is a datastore, then the Data Access Object design pattern could be applied to facilitate behavior between the WebService object and the application's Business Tier.
GhostRadioTwoa at 2007-7-9 21:49:59 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
Yes, that's what i'm going to use.Probably with Dozer for Object to Object Mapping.Regards,Sebastien Degardin
sdegardina at 2007-7-9 21:49:59 > top of Java-index,Other Topics,Patterns & OO Design...