I have a three-tier system. tier 1 = UI tier 2 = 'aggregation layer' ZF2 tier 3 = 'core services' ZF2
The agg layer is a way to fold in client specific 'stuff' without polluting core services. In many cases, the agg layer will NOT be adding additional features, so it simply passes everything along to core services and then passes the response of the core services up to the UI tier. I have a lot of bloat code that takes what the ui posts and passes it to core. I want to avoid this if I can and have the request go right to core. Question: Rather than coding a Controller that passes the same request on to core services and then passes core service's response back to the UI, is there a way either through Bootstrap or my routing config to pass certain url patterns directly to core? So when UI posts to 'http://myclient.mydomain.com/member/add, zend reviews the url pattern, sees that the agg layer doesn't have any additional client specific tasks to execute and posts the same request to core.mydomain.com/member/add Thanks in advanced! Monty -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Pass-through-routing-tp4661639.html Sent from the Zend Framework mailing list archive at Nabble.com. -- List: fw-general@lists.zend.com Info: http://framework.zend.com/archives Unsubscribe: fw-general-unsubscr...@lists.zend.com