Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
14answers
11k views

Simplest PHP Routing framework ..?

I'm looking for the simplest implementation of a routing framework in PHP, in a typical PHP environment (Running on Apache, or maybe nginx) .. It's the implementation itself I'm mostly interested in, ...
4
votes
2answers
376 views

PHP Front Controller implementation without singleton : conceptual question

i have a "conceptual" question about Front controller implementation in php. Most of the Front Controllers i have seen around are implemented with Singleton, i am not a big fan of singleton pattern ...
2
votes
2answers
493 views

front controller , Page controller?

what is the difference between front controller and page controller? which is the best?
1
vote
2answers
41 views

Avoid large switch statement in frontcontroller

I have a larger application with a Frontcontroller in php that handles incoming ajax requests. I am thinking about a good way to handle Action->Method mapping, this controller is in charge of ...
1
vote
1answer
42 views

Using set_exception_handler to handle errors in an application

I am currently working on an MVC application that implements the front-controller pattern. The process works like this: request is received request gets turned into a RequestObject RequestObject is ...
1
vote
2answers
181 views

how can redirect after a dispatcher exception?

On zend framework inside my bootstrap file i have the following code: $frontController = Zend_Controller_Front::getInstance(); try { $front->dispatch(); } catch (Exception $e) { echo ...
1
vote
5answers
2k views

Can a servlet determine if the data posted to it is enctype=“multipart/form-data”?

I have a servlet that is used for many different actions, used in the Front Controller pattern. Does anyone know if it is possible to tell if the data posted back to it is ...
0
votes
1answer
54 views

Qi4j in a JSF Application

In Qi4j you have to assemble the composites. Can someone tell me where to handle this in a JSF 2.0 application? Should i extend the FrontController-Servlet ? Or is it enough to assemble at the point, ...
0
votes
0answers
228 views

How to configure tomcat's web.xml with my Front Controller

I've written a simple Front Controller for my J2E application. This controller intercepts all the urls to redirect them to the corresponding method in the right class. A typical url looks like this: ...
0
votes
1answer
134 views

Why my Symfony Front Controller doesn't work?

I have this: web/index.php web/myapp_dev.php I declare with the same code: $configuration = ProjectConfiguration::getApplicationConfiguration('myapp', 'dev', true); for modules, I have: ...
0
votes
0answers
107 views

GRASP Pattern: Correct controller pattern?

I have a specific questions about whats wrong and right to do, when applying the controller pattern to my application. Its a C# WinForms client application. As you can see on the two attached images, ...
0
votes
1answer
85 views

FrontController implementation for JSP pages

I am developing a simple website with few JSP pages. Each jsp does have a dynamic data that needs be read from XML before they redered on to the browser. Though MVC pattern such as Struts2 is more ...