<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
&nbsp;<BR>
I can set a custom channel variable in my incomming dial plan like this...<BR>
&nbsp;<BR>
&lt;action application='set' data='MyChannelVariable=12345' /&gt;<BR>
&nbsp;<BR>
And it shows up fine in the CDR<BR>
&nbsp;<BR>
I am now attempting to use mod_event_socket to set a custom channel variable and have it&nbsp;appear in the CDR<BR>
&nbsp;<BR>
Here is the C# code so far, the code is part of a Microsoft Speech Server application that is answering the call<BR>
&nbsp;<BR>
private void injectCdrCode_ExecuteCode(object sender, EventArgs e)<BR>
{<BR>
&nbsp; try<BR>
&nbsp; {<BR>
&nbsp;&nbsp;&nbsp; TcpClient newClient = new TcpClient();<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; newClient.Connect("127.0.0.1", 8021);<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; NetworkStream tcpStream = newClient.GetStream();<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; byte[] sendBytes = Encoding.ASCII.GetBytes("&lt;action application='set' data='MyChannelVariable=12345' /&gt;");<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; tcpStream.Write(sendBytes, 0, sendBytes.Length);<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; tcpStream.Close();<BR>
&nbsp;<BR>
&nbsp;&nbsp;&nbsp; newClient.Close();<BR>
&nbsp; }<BR>
&nbsp; catch(Exception ex)<BR>
&nbsp; {<BR>
&nbsp;&nbsp;&nbsp; throw ex;<BR>
&nbsp; }<BR>
}<BR>
&nbsp;<BR>
After the call is answered, the C# code seems to run fine, but I dont see the custom channel variable in the resulting CDR<BR>
&nbsp;<BR>
I figure I am not setting it correctly<BR>
&nbsp;<BR>
Can anyone advise on what I am doing wrong ?<BR>
&nbsp;<BR>
Thanks<BR>
&nbsp;<BR>
&nbsp;<BR>
Brian<BR>
&nbsp;<BR>
&nbsp;<BR>                                               </body>
</html>