<div dir="ltr"><span style="font-size:12.8px">Hello Team,</span><div style="font-size:12.8px">I am a newbie to FreeSWITCH.I am trying to make an IVR application in C#.</div><div style="font-size:12.8px">I want to use inbound mode for answering an incoming call to the app and then play menu options and place a call to the another number.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">currently, my app is connected successfully to FreeSWITCH, receiving events but no playing the .wav file against the incoming call.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">how would this be possible?</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">here is my code</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>  while (eslConnection.Connected() == ESL_SUCCESS)</div><div>            {</div><div>                eslEvent = eslConnection.RecvEvent();</div><div>                eslConnection.Execute("answer"<wbr>, null, strUuid);</div><div>                eslConnection.Execute("<wbr>playback", "C:\\FS_GIT\\Win32\\Debug\\<wbr>sounds\\music\\8000\\suite-<wbr>espanola-op-47-leyenda.wav", strUuid);</div><div>                Console.WriteLine(string.<wbr>Format("{0}:Inbound CallId:{1}", eslEvent.getType(), strUuid));</div><div><br></div><div>                Console.WriteLine(eslEvent.<wbr>Serialize(String.Empty));</div><div><br></div><div>            }</div></div></div>