I use the twig render function to render a controller :
{% render(controller("MyAppDemoBundle:Default:footer")) %}
It seems that the rendered controller didn't receive the request as the main controller. So the request method is always set to "GET", even if the main request is POST.
Is it normal ?