<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<style>
<!--
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
p
        {mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        font-size:12.0pt;
        font-family:"Times New Roman";}
pre
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:Arial;
        color:windowtext;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1027" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=Section1>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'>Dear All;<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'><o:p> </o:p></span></font></b></p>
<pre><b><font size=2 face=Arial><span style='font-size:10.0pt;font-family:Arial;
font-weight:bold'> Hope you are fine. I am developing an application for IAX using C#, and I have a problem sending frames to the server, I don’t know how exactly I can send the frames. I have saw this site </span></font><a
href="http://splurge.peoples-wireless.com/iax/" target="_blank">http://splurge.peoples-wireless.com/iax/</a> but I couldn’t understand how can combine the frames. This is the code I have written<o:p></o:p></b></pre><pre><font
size=2 face="Courier New"><span style='font-size:10.0pt'><o:p> </o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'>Public void send(string message)<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'>{<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'>UdpClient udpClient = new UdpClient();<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> try{<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> udpClient.Connect("82.201.196.147", 4569);<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'><o:p> </o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> Byte[] sendBytes = Encoding.ASCII.GetBytes(message);<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> <o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> udpClient.Send(sendBytes, sendBytes.Length);<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'> }<o:p></o:p></span></font></pre><pre><font
size=2 color=blue face="Courier New"><span style='font-size:11.0pt;color:blue'>}<o:p></o:p></span></font></pre>
<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p> </o:p></span></font></p>
<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p> </o:p></span></font></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'>Then I call </span></font></b><b><font
size=2 color=red face=Arial><span style='font-size:11.0pt;font-family:Arial;
color:red;font-weight:bold'>send</span></font></b><b><font size=2 face=Arial><span
style='font-size:11.0pt;font-family:Arial;font-weight:bold'> </span></font></b><b><font
size=2 face=Arial><span style='font-size:10.0pt;font-family:Arial;font-weight:
bold'>method and give it the frame to send like for example (</span></font></b><b><font
size=2 color=red face=Arial><span style='font-size:11.0pt;font-family:Arial;
color:red;font-weight:bold'>0x0d</span></font></b><b><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial;font-weight:bold'>) but I always get
this from the server<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'><o:p> </o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 color=red face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:red;font-weight:bold'>1696.476346 82.201.205.17 ->
82.201.196.147 IAX2 Mini packet, source call# 17969, timestamp 8297ms, unknown (0x00)<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 color=red face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:red;font-weight:bold'><o:p> </o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 color=red face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:red;font-weight:bold'>OR<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 color=red face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:red;font-weight:bold'><o:p> </o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 color=red face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:red;font-weight:bold'>82.201.205.17 -> 82.201.196.147
IAX2 Mini packet, source call# 24930, timestamp 25444ms, empty frame<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'><o:p> </o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'>If anyone can help sending an example of
what I can put in the message variable that the server can understand and how
can I combine the frames described in the link below will be great.<o:p></o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'><o:p> </o:p></span></font></b></p>
<p class=MsoNormal><b><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial;font-weight:bold'>Thank you.<o:p></o:p></span></font></b></p>
<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p> </o:p></span></font></p>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="34%"
bgcolor=navy style='width:34.0%;background:navy'>
<tr height=1 style='height:.75pt'>
<td width="20%" rowspan=3 valign=top style='width:20.0%;padding:0in 0in 0in 0in;
height:.75pt'>
<p class=MsoNormal><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
filled="f" stroked="f">
<v:stroke joinstyle="miter" />
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0" />
<v:f eqn="sum @0 1 0" />
<v:f eqn="sum 0 0 @1" />
<v:f eqn="prod @2 1 2" />
<v:f eqn="prod @3 21600 pixelWidth" />
<v:f eqn="prod @3 21600 pixelHeight" />
<v:f eqn="sum @0 0 1" />
<v:f eqn="prod @6 1 2" />
<v:f eqn="prod @7 21600 pixelWidth" />
<v:f eqn="sum @8 21600 0" />
<v:f eqn="prod @7 21600 pixelHeight" />
<v:f eqn="sum @10 21600 0" />
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect" />
<o:lock v:ext="edit" aspectratio="t" />
</v:shapetype><v:shape id="_x0000_s1026" type="#_x0000_t75" alt="" style='position:absolute;
margin-left:0;margin-top:0;width:62.25pt;height:35.25pt;z-index:1;
mso-wrap-distance-left:0;mso-wrap-distance-top:0;mso-wrap-distance-right:0;
mso-wrap-distance-bottom:0;mso-position-horizontal:left;
mso-position-horizontal-relative:text;mso-position-vertical-relative:line'
o:allowoverlap="f">
<v:imagedata src="cid:image001.jpg@01C5CBFC.6527EE40" o:href="http://www.ATSInt.com/smalllogo.jpg" />
<w:wrap type="square"/>
</v:shape><![endif]--><![if !vml]><img width=83 height=47
src="cid:image001.jpg@01C5CBFC.6527EE40" align=left border=0 v:shapes="_x0000_s1026"><![endif]><font
size=3 face="Times New Roman"><span style='font-size:12.0pt'><o:p></o:p></span></font></p>
</td>
<td width="80%" height=1 valign=bottom bgcolor=white style='width:80.0%;
background:white;padding:0in 0in 0in 0in;height:.75pt'>
<p class=MsoNormal><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> <o:p></o:p></span></font></p>
</td>
</tr>
<tr height=5 style='height:3.75pt'>
<td width="80%" height=5 valign=bottom bgcolor=white style='width:80.0%;
background:white;padding:0in 0in 0in 0in;height:3.75pt'>
<p class=MsoNormal><b><font size=1 color=navy face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:navy;font-weight:bold'> Advanced Technology Solutions International</span></font></b><o:p></o:p></p>
</td>
</tr>
<tr height=1 style='height:.75pt'>
<td width="50%" height=1 bgcolor=white style='width:50.0%;background:white;
padding:0in 0in 0in 0in;height:.75pt'>
<div class=MsoNormal align=center style='text-align:center'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>
<hr size=2 width="100%" noshade color=navy align=center>
</span></font></div>
<p class=MsoNormal><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'><o:p></o:p></span></font></p>
</td>
</tr>
<tr height=64 style='height:48.0pt'>
<td width="20%" height=64 valign=bottom style='width:20.0%;padding:0in 0in 0in 0in;
height:48.0pt'>
<p align=center style='text-align:center'><b><font size=1 color=white
face=Arial><span style='font-size:7.5pt;font-family:Arial;color:white;
font-weight:bold'>atsint.com</span></font></b><o:p></o:p></p>
</td>
<td width="50%" height=64 bgcolor=white style='width:50.0%;background:white;
padding:0in 0in 0in 0in;height:48.0pt'>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=215
style='width:161.25pt' height=1>
<tr height=16 style='height:12.0pt'>
<td width=244 colspan=2 height=16 style='width:183.0pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=2 color=gray face=Arial><span
style='font-size:10.0pt;font-family:Arial;color:gray;font-weight:bold'>Youssef
Sayed Youssef</span></font></b><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'><br>
System Integration Manager</span></font></b><o:p></o:p></p>
</td>
</tr>
<tr height=16 style='height:12.0pt'>
<td width=51 height=16 style='width:38.25pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'> Tel</span></font></b><o:p></o:p></p>
</td>
<td width=185 height=16 style='width:138.75pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'>+202
- 6078917 ext: 807</span></font></b><o:p></o:p></p>
</td>
</tr>
<tr height=16 style='height:12.0pt'>
<td width=51 height=16 style='width:38.25pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'>GSM</span></font></b><o:p></o:p></p>
</td>
<td width=185 height=16 style='width:138.75pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'>+2010
16 35 600</span></font></b><o:p></o:p></p>
</td>
</tr>
<tr height=16 style='height:12.0pt'>
<td width=51 height=16 style='width:38.25pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'> Fax</span></font></b><o:p></o:p></p>
</td>
<td width=185 height=16 style='width:138.75pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'>+202
- 6079178</span></font></b><o:p></o:p></p>
</td>
</tr>
<tr height=16 style='height:12.0pt'>
<td width=51 height=16 style='width:38.25pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'> Email</span></font></b><o:p></o:p></p>
</td>
<td width=185 height=16 style='width:138.75pt;padding:0in 0in 0in 0in;
height:12.0pt'>
<div>
<p class=MsoNormal><b><font size=1 color=gray face=Arial><span
style='font-size:7.5pt;font-family:Arial;color:gray;font-weight:bold'> <a
href="mailto:youssef.sayed@atsint.com">youssef.sayed@atsint.com</a></span></font></b><o:p></o:p></p>
</div>
</td>
</tr>
</table>
</div>
<p class=MsoNormal align=center style='text-align:center'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'><o:p></o:p></span></font></p>
</td>
</tr>
</table>
<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'><o:p> </o:p></span></font></p>
</div>
</body>
</html>