question about delegate pattern
hi guys
i have a question about this pattern. if i have a system with one tier being the web application and one tier being the enterprise application, and the web tier uses delegates to call business services implemented by EJBs to do stuff in the middle tier, each tier will be deployed in a seperate container. the web tier will need to call the delegates to get things done. my question is how i should group the delegates. do i have the delegate as part of the web application package or enterprise package? i would think that since the delegates server as APIs for the enterprise application, and they should be part of the enterprise tier, and for the web app to call, i will just need to jar the delegates as well as ejb info and place it in the classpath of the web app. is this correct?
thanks

