<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - Communications - Comments</title>
 <link>http://www.newlc.com/forums/communications</link>
 <description>Comments for &quot;Communications&quot;</description>
 <language>en</language>
<item>
 <title>Re: Weak Or No GPRS</title>
 <link>http://www.newlc.com/forum/weak-or-no-gprs#comment-48317</link>
 <description>&lt;p&gt;&lt;br /&gt;
Hi lvsti,&lt;/p&gt;

&lt;p&gt;Thanks for this correction in my code .&lt;br /&gt;
I will test this update you this works or not.&lt;/p&gt;

&lt;p&gt;Thanks once again.&lt;/p&gt;

&lt;p&gt;Regards,&lt;br /&gt;
Yogesh&lt;/p&gt;</description>
 <pubDate>Thu, 28 Aug 2008 12:54:59 +0200</pubDate>
 <dc:creator>yogesh.bhople</dc:creator>
 <guid isPermaLink="false">comment 48317 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Weak Or No GPRS</title>
 <link>http://www.newlc.com/forum/weak-or-no-gprs#comment-48313</link>
 <description>&lt;p&gt;I think you didn&#039;t get the point of handling connmon events.&lt;/p&gt;

&lt;p&gt;When execution enters &lt;code&gt;EventL()&lt;/code&gt;, all the data of the event is handed over via &lt;code&gt;const CConnMonEventBase&amp;amp; aConnMonEvent&lt;/code&gt;. This is the base class for all event types, so depending on the actual event type obtained by &lt;code&gt;aConnMonEvent.EventType()&lt;/code&gt; you should CAST that event object into the more specific type, like this:&lt;/p&gt;

&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;void CMyEngine::EventL( const CConnMonEventBase&amp;amp; aConnMonEvent )&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch ( aConnMonEvent.EventType() )&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case EConnMonNetworkStatusChange:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; const CConnMonNetworkStatusChange&amp;amp; nsEvent = static_cast&amp;lt;const CConnMonNetworkStatusChange&amp;amp;&amp;gt;( aConnMonEvent );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TInt networkStatus = nsEvent.NetworkStatus();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 28 Aug 2008 11:18:15 +0200</pubDate>
 <dc:creator>lvsti</dc:creator>
 <guid isPermaLink="false">comment 48313 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Weak Or No GPRS</title>
 <link>http://www.newlc.com/forum/weak-or-no-gprs#comment-48308</link>
 <description>&lt;p&gt;Hi ,&lt;/p&gt;

&lt;p&gt;Does anybody know about above problem ?&lt;br /&gt;
Waiting for reply.&lt;/p&gt;

&lt;p&gt;Thanks And Regards,&lt;br /&gt;
Yogesh&lt;/p&gt;</description>
 <pubDate>Thu, 28 Aug 2008 08:04:21 +0200</pubDate>
 <dc:creator>yogesh.bhople</dc:creator>
 <guid isPermaLink="false">comment 48308 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Weak Or No GPRS</title>
 <link>http://www.newlc.com/forum/weak-or-no-gprs#comment-48305</link>
 <description>&lt;p&gt;Hi Eric,&lt;/p&gt;

&lt;p&gt;First of all Thanks for reply.&lt;/p&gt;

&lt;p&gt;i used following code&lt;br /&gt;
but gives me error &lt;/p&gt;

&lt;p&gt;undefined reference to &quot; CConnMonNetworkStatusChange &quot;&lt;/p&gt;

&lt;p&gt;i added the lib required for this class but still gives me error.&lt;/p&gt;

&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;RConnectionMonitor&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iMonitor;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;iMonitor.ConnectL();&lt;br /&gt;iMonitor.NotifyEventL(*this);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//Call back Function&lt;br /&gt;&lt;br /&gt;void CMyEngine::EventL&amp;nbsp; (&amp;nbsp; const CConnMonEventBase &amp;amp;&amp;nbsp; aConnMonEvent&amp;nbsp;&amp;nbsp; ) &lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CConnMonNetworkStatusChange* temp=new(ELeave)CConnMonNetworkStatusChange(aConnMonEvent.ConnectionId (),myNetworkStatus);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;Waiting for reply.&lt;/p&gt;

&lt;p&gt;Thanks And Regards,&lt;br /&gt;
Yogesh&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Wed, 27 Aug 2008 16:18:00 +0200</pubDate>
 <dc:creator>yogesh.bhople</dc:creator>
 <guid isPermaLink="false">comment 48305 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Weak Or No GPRS</title>
 <link>http://www.newlc.com/forum/weak-or-no-gprs#comment-48292</link>
 <description>&lt;p&gt;HAve you taken a look at RConnectionMonitor ?&lt;/p&gt;</description>
 <pubDate>Wed, 27 Aug 2008 09:51:40 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48292 at http://www.newlc.com</guid>
</item>
<item>
 <title>Question on Multiple Opertion on a single CTelephony Session </title>
 <link>http://www.newlc.com/forum/question-multiple-opertion-a-single-ctelephony-session#comment-48287</link>
 <description>&lt;p&gt;I understand , thank you . &lt;/p&gt;</description>
 <pubDate>Wed, 27 Aug 2008 07:31:10 +0200</pubDate>
 <dc:creator>Yotamix</dc:creator>
 <guid isPermaLink="false">comment 48287 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Question on Multiple Opertion on a single ...</title>
 <link>http://www.newlc.com/forum/question-multiple-opertion-a-single-ctelephony-session#comment-48284</link>
 <description>&lt;p&gt;When your AO is idle (no asynch request ongoing) you can safely start a new one. In case you do have a request active, just call Cancel (which will call DoCancel where you do your canceling, depending on state).&lt;/p&gt;</description>
 <pubDate>Tue, 26 Aug 2008 18:56:39 +0200</pubDate>
 <dc:creator>Andreas</dc:creator>
 <guid isPermaLink="false">comment 48284 at http://www.newlc.com</guid>
</item>
<item>
 <title>Question on Multiple Opertion on a single CTelephony Session </title>
 <link>http://www.newlc.com/forum/question-multiple-opertion-a-single-ctelephony-session#comment-48283</link>
 <description>&lt;p&gt;so stopping one , and after that executing the other , correct ?&lt;br /&gt;
In Example : &lt;/p&gt;

&lt;p&gt;If i hangup already , i know i am in Idle State , so i DoCancel() on the last request and perform the next assignment?&lt;/p&gt;</description>
 <pubDate>Tue, 26 Aug 2008 14:53:57 +0200</pubDate>
 <dc:creator>Yotamix</dc:creator>
 <guid isPermaLink="false">comment 48283 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Question on Multiple Opertion on a single...</title>
 <link>http://www.newlc.com/forum/question-multiple-opertion-a-single-ctelephony-session#comment-48282</link>
 <description>&lt;p&gt;One active object can only have one and only one outstanding asynchronous request going on at any time. So as long as your different requests are executed in queue, one after another, it&#039;s OK. But you have to wait the completion of the current request before launching a new one. If you want simultaneous requests, you need many active objects.&lt;/p&gt;</description>
 <pubDate>Tue, 26 Aug 2008 14:36:16 +0200</pubDate>
 <dc:creator>Andreas</dc:creator>
 <guid isPermaLink="false">comment 48282 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Bluetooth enable problem in emulator.</title>
 <link>http://www.newlc.com/forum/bluetooth-enable-problem-emulator#comment-48084</link>
 <description>&lt;p&gt;Hi lvsti,&lt;/p&gt;

&lt;p&gt;Now I have another problem.&lt;br /&gt;
First time my Bluetooth application detect Bluetooth device after that it is not detecting. &lt;br /&gt;
what will be the problem.&lt;/p&gt;</description>
 <pubDate>Thu, 14 Aug 2008 15:01:45 +0200</pubDate>
 <dc:creator>RB_Sahu</dc:creator>
 <guid isPermaLink="false">comment 48084 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Bluetooth enable problem in emulator.</title>
 <link>http://www.newlc.com/forum/bluetooth-enable-problem-emulator#comment-48082</link>
 <description>&lt;p&gt;Hi lvsti,&lt;/p&gt;

&lt;p&gt;Thank you very much for your help. I have successfully enable Bluetooth on emulator.&lt;/p&gt;</description>
 <pubDate>Thu, 14 Aug 2008 13:44:44 +0200</pubDate>
 <dc:creator>RB_Sahu</dc:creator>
 <guid isPermaLink="false">comment 48082 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Bluetooth enable problem in emulator.</title>
 <link>http://www.newlc.com/forum/bluetooth-enable-problem-emulator#comment-48079</link>
 <description>&lt;p&gt;Hi lvsti,&lt;/p&gt;

&lt;p&gt;thank you for reply. I am going through given link.&lt;/p&gt;</description>
 <pubDate>Thu, 14 Aug 2008 12:01:49 +0200</pubDate>
 <dc:creator>RB_Sahu</dc:creator>
 <guid isPermaLink="false">comment 48079 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Capturing Network Packet </title>
 <link>http://www.newlc.com/forum/capturing-network-packet#comment-48074</link>
 <description>&lt;p&gt;Hi Vinod,&lt;/p&gt;

&lt;p&gt;Y don&#039;t  you write the data that is being received from the server into a file . you can use the&lt;span style=&quot;font-weight:bold&quot;&gt; RFile &amp; RFs API &lt;/span&gt;to do this. But this is with respect to only your Application. &lt;br /&gt;
&lt;div class=&quot;bb-quote&quot;&gt;&lt;blockquote class=&quot;bb-quote-body&quot;&gt;You however cant snoop on what other applications are getting over the network if that is what your objective is or may be the API is closed and not available to the developers. &lt;/blockquote&gt;&lt;/div&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 14 Aug 2008 11:07:20 +0200</pubDate>
 <dc:creator>gmsk19</dc:creator>
 <guid isPermaLink="false">comment 48074 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Bluetooth enable problem in emulator.</title>
 <link>http://www.newlc.com/forum/bluetooth-enable-problem-emulator#comment-48070</link>
 <description>&lt;p&gt;Check this thread out:&lt;br /&gt;
&lt;a href=&quot;http://discussion.forum.nokia.com/forum/showthread.php?t=103625&quot;&gt;http://discussion.forum.nokia.com/forum/showthread.php?t=103625&lt;/a&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 14 Aug 2008 08:56:09 +0200</pubDate>
 <dc:creator>lvsti</dc:creator>
 <guid isPermaLink="false">comment 48070 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: How to video call??</title>
 <link>http://www.newlc.com/topic-16905#comment-47650</link>
 <description>&lt;p&gt;with this: &lt;a href=&quot;http://wiki.forum.nokia.com/index.php/CS001026_-_AIW_Dial_Data_Consumer_API&quot;&gt;http://wiki.forum.nokia.com/index.php/CS001026_-_AIW_Dial_Data_Consumer_API&lt;/a&gt;&lt;/p&gt;</description>
 <pubDate>Wed, 23 Jul 2008 12:50:20 +0200</pubDate>
 <dc:creator>MrTJ</dc:creator>
 <guid isPermaLink="false">comment 47650 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
