There is no valid case not to use transfer (or even execute_extension) in this scenario. Create a new file: conf/dialplan/check_pin.xml:<br><br><span style="font-family:courier new,monospace"><font size="1">&lt;include&gt;<br>
  &lt;context name=&quot;utility&quot;&gt;<br>    &lt;extension name=&quot;Check PIN&quot;&gt;<br>      &lt;condition field=&quot;destination_number&quot; expression=&quot;^check_pin$&quot;/&gt;<br>      &lt;condition field=&quot;${pin}&quot; expression=&quot;^1234$&quot;&gt;<br>
        &lt;action application=&quot;transfer&quot; data =&quot;3000 XML local&quot; /&gt;<br>        &lt;anti-action application=&quot;hangup&quot; data=&quot;Login Failed&quot;/&gt;<br>      &lt;/condition&gt;<br>    &lt;/extension&gt;<br>
  &lt;/context&gt;<br>&lt;/include&gt;<br></font></span><br>Then just do this in your original extension that has the read app (note I changed the name of the extension for clarity):<br><br><span style="font-family:courier new,monospace"><font size="1">&lt;extension name=&quot;Get PIN from caller&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^111$&quot; break=&quot;never&quot;&gt;<br>   
&lt;action application=&quot;answer&quot;/&gt;<br>   
&lt;action application=&quot;sleep&quot; data=&quot;1000&quot;/&gt;<br>   
&lt;action application=&quot;read&quot; data=&quot;4 4 $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin 10000 #,*&quot;/&gt;<br>    &lt;action application=&quot;log&quot; data=&quot;INFO user entered &#39;${pin}&#39;&quot;/&gt;<br>
    &lt;action application=&quot;transfer&quot; data=&quot;check_pin XML utility&quot;/&gt;     <br></font></span><div id=":1o0"><span style="font-family:courier new,monospace"><font size="1">  &lt;/condition&gt;<br>
&lt;/extension&gt;</font></span></div><br>That&#39;s all there is to it. If this method seems weird, or unusual, or abstract then too bad! :) It&#39;s a great way to keep things relatively simple while ensuring a level of security.<br>
<br>-MC<br><br><div class="gmail_quote">On Wed, Sep 19, 2012 at 8:46 AM, Emrah <span dir="ltr">&lt;<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Naming an extension won&#39;t help for my transfer purpose.<br>
What I think  I will do is use the same 1 extension idea, but verify the existance of ${pin} before executing the read instruction.<br>
This way if ${pin} exists, it will execute one set of instructions, if it doesn&#39;t, it will execute the read app. Following the read app would just be an action to transfer the user to the same context and destination_number.<br>

<br>
I hope what I tried to explain makes sense.<br>
<div class="HOEnZb"><div class="h5">On Sep 19, 2012, at 10:40 AM, Ken Rice &lt;<a href="mailto:krice@freeswitch.org">krice@freeswitch.org</a>&gt; wrote:<br>
<br>
&gt; You can call an extension whatever you want... It doesn&#39;t have to be a<br>
&gt; number... But using the separate context allows you to keep the destination<br>
&gt; number field in the CDR something same like that actual destination<br>
&gt; number...<br>
&gt;<br>
&gt;<br>
&gt; On 9/19/12 7:25 AM, &quot;Emrah&quot; &lt;<a href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Is there a way to address an extension without assigning it to a<br>
&gt;&gt; destination_number? I don&#39;t want the extension to be reachable directly and<br>
&gt;&gt; would gladly avoid creating a dedicated context.<br>
&gt;&gt; Can I transfer a call to an extension that doesn&#39;t have a destination_number?<br>
&gt;&gt;<br>
&gt;&gt; Best,<br>
&gt;&gt; Emrah<br>
&gt;&gt; On Sep 19, 2012, at 7:10 AM, Emrah &lt;<a href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Easy indeed, but I wanted to avoid it thinking there was some other<br>
&gt;&gt;&gt; alternative.<br>
&gt;&gt;&gt; Thanks for your quick response, will use it.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Cheers,<br>
&gt;&gt;&gt; Emrah<br>
&gt;&gt;&gt; On Sep 19, 2012, at 12:50 AM, Ken Rice &lt;<a href="mailto:krice@freeswitch.org">krice@freeswitch.org</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; This is easy to handle... Do it as 2 different extensions and after you<br>
&gt;&gt;&gt;&gt; collect the PIN, use the transfer application to transfer the call to a pin<br>
&gt;&gt;&gt;&gt; validating extension... Problem fixed with a very simple solution<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On 9/18/12 11:42 PM, &quot;Emrah&quot; &lt;<a href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Please bypass the inline=&quot;true&quot;Š A fantasy of mine.<br>
&gt;&gt;&gt;&gt;&gt; On Sep 19, 2012, at 12:32 AM, Emrah &lt;<a href="mailto:lists@kavun.ch">lists@kavun.ch</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Hi all,<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; My example below cannot work because FS does not store the value of ${pin}<br>
&gt;&gt;&gt;&gt;&gt;&gt; until the call goes into execution state. While keeping it simple, what<br>
&gt;&gt;&gt;&gt;&gt;&gt; would<br>
&gt;&gt;&gt;&gt;&gt;&gt; be your take on this? Is there a way to instruct FS to start executing at<br>
&gt;&gt;&gt;&gt;&gt;&gt; some point and discovering the dialplan along the way?<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;extension name=&quot;pin test&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field=&quot;destination_number&quot; expression=&quot;^111$&quot; break=&quot;never&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;action application=&quot;sleep&quot; data=&quot;1000&quot;/&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;action application=&quot;read&quot; data=&quot;4 4<br>
&gt;&gt;&gt;&gt;&gt;&gt; $${base_dir}/sounds/en/us/callie/conference/8000/conf-pin.wav pin 10000<br>
&gt;&gt;&gt;&gt;&gt;&gt; #,*&quot;<br>
&gt;&gt;&gt;&gt;&gt;&gt; inline=&quot;true&quot; /&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field=&quot;${pin}&quot; expression=&quot;^1234$&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;action application=&quot;transfer&quot; data =&quot;3000 XML local&quot; /&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;condition field=&quot;${pin}&quot; expression=&quot;^\d{4}$&quot;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;action application=&quot;hangup&quot; /&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Thanks and all the best, as always.<br>
&gt;&gt;&gt;&gt;&gt;&gt; Emrah<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt;&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Ken<br>
&gt;&gt;&gt;&gt; <a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; _________________________________________________________________________<br>
&gt;&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt;&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt;&gt;&gt;&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _________________________________________________________________________<br>
&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt;&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;&gt;<br>
&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt; --<br>
&gt; Ken<br>
&gt; <a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br>
&gt; <a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
&gt; <a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br>
&gt; <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Michael S Collins<br>Twitter: @mercutioviz<br><a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br><a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br><br><br>