Thanks Raul, but this doesn't work.<div><br></div><div>Here here is my basic test:</div><div><br></div><div>/////// default.vcl ///////</div><div><div>sub vcl_recv {</div><div>  if (req.url ~ "toto.php") {</div>
<div>    set req.http.X-toto = "42";</div><div>  }</div><div>  unset req.http.Cookie;</div><div>  return (pass);</div><div>}</div><div><br></div><div>sub vcl_fetch {</div><div>    set beresp.do_esi = true;</div>
<div>    return (deliver);</div><div>}</div><div><br></div><div>//////// toto.php /////////</div><div><div><html></div><div><body></div><div><p>Parent headers:</p></div><div><pre></div><div><?php echo var_export($_SERVER, true) ?></div>
<div></pre></div><div><esi:include src="/esi.php" /></div><div></body></div><div></html></div></div><div><br></div>//////// esi.php /////////</div><div><div><p>esi headers:</p></div>
<div><pre></div><div><?php echo var_export($_SERVER, true) ?></div><div></pre></div><div><br></div><div>And as a result, when getting /toto.php, I can find the 'HTTP_X_TOTO' => '42' header in the parent header, but not in the ESI header.</div>
<div><br></div><div>Any idea?</div><div><br></div><div><br></div>On Thursday, November 8, 2012, Rangel, Raul  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div lang="EN-US" link="blue" vlink="purple"><div><p class="MsoNormal">Guilhaume,<u></u><u></u></p><p class="MsoNormal">There are a few tricks you can use to do this. First of all you can extract the cookie that you are interested in and place it in a header.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">vcl_recv {<u></u><u></u></p><p class="MsoNormal">            set req.http.X-Cookie-One = regsub(req.http.Cookie,"^.*?mycookie=([^;]*);*.*$" , "\1");<u></u><u></u></p>
<p class="MsoNormal">            unset req.http.Cookie;<u></u><u></u></p><p class="MsoNormal">}<u></u><u></u></p><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">Then when varnish does the request to the parent page you can completely ignore the X-Cookie-One header. As for the subsequent ESI requests they too should also have the X-Cookie-One header attached to them. In your back end you should be able to read the header and in the response include a Very: X-Cookie-One. This way you get per user caching on the ESI.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">Raul<span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"><u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"><u></u> <u></u></span></p>
<div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0in 0in 0in"><p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> <a href="javascript:_e({}, 'cvml', 'varnish-dev-bounces@varnish-cache.org');" target="_blank">varnish-dev-bounces@varnish-cache.org</a> [mailto:<a href="javascript:_e({}, 'cvml', 'varnish-dev-bounces@varnish-cache.org');" target="_blank">varnish-dev-bounces@varnish-cache.org</a>] <b>On Behalf Of </b>Guilhaume Bordiau<br>
<b>Sent:</b> Thursday, November 08, 2012 3:42 AM<br><b>To:</b> <a href="javascript:_e({}, 'cvml', 'varnish-dev@varnish-cache.org');" target="_blank">varnish-dev@varnish-cache.org</a><br><b>Subject:</b> Passing variable data to ESI requests<u></u><u></u></span></p>
</div><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">Hello,<u></u><u></u></p><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">We're using Varnish since a few weeks but are facing the issue of using dynamic content inside cached pages.<u></u><u></u></p>
</div><div><p class="MsoNormal">We tried ESI for that but it appears that there's no way to pass some (or all) of the original request elements (headers, cookies) to the ESI request made toward our server.<u></u><u></u></p>
</div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">We implemented hacks through cookies read from javascript, triggering ajax requests, but we're facing maintainability issues around browsers refusing cookies (our app run in an iframe and domains are different from the top frame).<u></u><u></u></p>
</div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">So we're starting to think of developing the missing part of code in Varnish that could make it do what we need: <u></u><u></u></p></div>
<div><p class="MsoNormal">Allow to pass the original request headers and cookies to the ESI URI contained in a cached page.<u></u><u></u></p></div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">
So my questions are:<u></u><u></u></p></div><div><p class="MsoNormal">- Can you confirm that's it's currently not possible?<u></u><u></u></p></div><div><p class="MsoNormal">- What would be the amount of work to achieve this?<u></u><u></u></p>
</div><div><p class="MsoNormal">- Any tips to help me getting started with this?<u></u><u></u></p></div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">Much thanks in advance to all.<u></u><u></u></p>
</div><div><p class="MsoNormal"><u></u> <u></u></p></div><div><p class="MsoNormal">Guilhaume Bordiau.<u></u><u></u></p></div></div></div></blockquote></div>