Hi,
I am sorry If I am repeating this question some have.
1)
I have the following design,
JSP --> Controller --> Business Deligate --> Session Facades --> SQL Adaptors (
JDBC) and Service Locator ( web service clients)
I have put SQL Adaptors in Integration layer, now thinking on where to put the Service locator and web services clients.
is it ok to make a new layer called "Web Service Layer" and put the Service Locator there ?
Basically My Session Facade --> DataAssembler ( calls different web service method and assembles data for the client tier) --> SeviceLocator --> Remote Serbvices.
2) I am caching the data from remote service calls in the client tier ( Cache Interface is provided), where will I include this in Component diagram?
The data is first checked in this client cache and if not found remote call to the session bean is done to get the data.
Please let me know.