<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Wireless development Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the 'Wireless development' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 08:38:40 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 08:38:40 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>calling from my cellphone or landline to pc using c# programming</title>
      <link>http://www.programmersheaven.com/mb/wireless/417489/417489/calling-from-my-cellphone-or-landline-to-pc-using-c-programming/</link>
      <description>i want to call from my cellphone or landline to pc using c# programming,,and i need your help....what should be my first step?&lt;br /&gt;
&lt;br /&gt;
thanx in advance&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/417489/417489/calling-from-my-cellphone-or-landline-to-pc-using-c-programming/</guid>
      <pubDate>Sun, 27 Jun 2010 14:36:33 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Problem sending Google map links via SMS</title>
      <link>http://www.programmersheaven.com/mb/wireless/414973/414973/problem-sending-google-map-links-via-sms/</link>
      <description>I was wondering if anyone could tell me how to "force" a link from an SMS message to Google Maps to display the entire link. Let me explain with an example. If I send this link via email "http://maps.google.com/maps?q=+42+22.6176,-071+46.5349+(MESSAGE+HEREIN)&amp;amp;iwloc=A&amp;amp;hl=en" it will bring up google maps and display the text bound within the parenthesis in a small popup window like it's supposed too. If I send the exact same link from a cell phone via SMS to an email or another SMS the address does not link the additional info bound within the parenthesis, it also only shows the address underlined up to but not including the first parenthesis. If I take that same email that doesn't work and reforward it back to myself the link works correctly. SO I guess my question is is there any way to force the the link by using any type of tags or formatting characters? Am I missing something here...because I'm totally stumped.  Thanks.&lt;br /&gt;
&lt;br /&gt;
Wayne&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/414973/414973/problem-sending-google-map-links-via-sms/</guid>
      <pubDate>Sun, 28 Mar 2010 13:47:52 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>communication between mobile phone and server computer</title>
      <link>http://www.programmersheaven.com/mb/wireless/395143/395143/communication-between-mobile-phone-and-server-computer/</link>
      <description>Hello!&lt;br /&gt;
&lt;br /&gt;
I'd like to create such an application that the user of mobile phone can call special service number and would connect by calling this number to the server computer in building about one kilometer from him/her. This is situation if that person has got his/her mobile phone from boss.&lt;br /&gt;
&lt;br /&gt;
In the case if it is private mobile phone, I'd like that person to call the special service number and stop connection just after connecting. Then the server would call back to that person.&lt;br /&gt;
&lt;br /&gt;
The puprose of this connection is to send voice data from employee and save this data as wave file on the server for further analysis.&lt;br /&gt;
&lt;br /&gt;
I thought about using Java language. I would create application for two or three the most popular kinds of mobile phones. (What are those?)&lt;br /&gt;
&lt;br /&gt;
Can you give me any suggestions / inform about useful technologies which I can apply in this solution?&lt;br /&gt;
&lt;br /&gt;
Thanks very much for your help!&lt;br /&gt;
&lt;br /&gt;
Greetings!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/395143/395143/communication-between-mobile-phone-and-server-computer/</guid>
      <pubDate>Fri, 14 Aug 2009 23:51:36 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Bluetooth connection not working on US Nokia phones from J2ME Midlet (</title>
      <link>http://www.programmersheaven.com/mb/wireless/393650/393650/bluetooth-connection-not-working-on-us-nokia-phones-from-j2me-midlet-/</link>
      <description>Hi All,&lt;br /&gt;
&lt;br /&gt;
We are developing a J2ME midlet (MIDP 2.0 ,CLDC 1.1)which makes bluetooth connection to other devices.The bluetooth connection is working perfectly on indian nokia phones with Airtel as carrier.But when we deploy the same midlet on Nokia E71 US phone with carrier as AT&amp;amp;T ,the bluetooth connection is not working.The sample code is as follows:&lt;br /&gt;
&lt;br /&gt;
public void run(){&lt;br /&gt;
&lt;br /&gt;
try{&lt;br /&gt;
StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);&lt;br /&gt;
&lt;br /&gt;
//&lt;br /&gt;
// open an input stream to get some data&lt;br /&gt;
//&lt;br /&gt;
&lt;br /&gt;
InputStream in = connection.openInputStream();&lt;br /&gt;
&lt;br /&gt;
byte[] serialData;&lt;br /&gt;
readData = true;&lt;br /&gt;
while(readData == true){&lt;br /&gt;
int lengthavai=0;&lt;br /&gt;
lengthavai = in.available();&lt;br /&gt;
&lt;br /&gt;
if(lengthavai &amp;gt; 0){&lt;br /&gt;
&lt;br /&gt;
serialData = new byte[lengthavai];&lt;br /&gt;
int length = in.read(serialData);&lt;br /&gt;
&lt;br /&gt;
System.out.println("data read: " + new String(serialData));&lt;br /&gt;
&lt;br /&gt;
dataViewForm.append(new String(serialData));&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
in.close();&lt;br /&gt;
connection.close();&lt;br /&gt;
&lt;br /&gt;
}catch(IOException ioe){&lt;br /&gt;
ioe.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
when we try to connect on &lt;strong&gt;US Phones&lt;/strong&gt;,the execution hangs at the following line of code:&lt;br /&gt;
StreamConnection connection = (StreamConnection)Connector.open(btConnectionURL);&lt;br /&gt;
&lt;br /&gt;
No exception is caught.&lt;br /&gt;
&lt;br /&gt;
Our midlet is not signed.&lt;br /&gt;
&lt;br /&gt;
In the Forums it is said that the problem is with the unsigned midlet.AS some of the  US carriers block the secure API usage on Unsigned midlet.&lt;br /&gt;
&lt;br /&gt;
But our question is, if we buy a code signing certificate from Verisign or Thawte and sign the midlet, will this problem be solved.&lt;br /&gt;
&lt;br /&gt;
Any other alternative solutions for this ???&lt;br /&gt;
&lt;br /&gt;
Immediate help will be appreciated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Mari raja&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/393650/393650/bluetooth-connection-not-working-on-us-nokia-phones-from-j2me-midlet-/</guid>
      <pubDate>Tue, 14 Jul 2009 03:01:28 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>i want to convert my readymade J2ME application to WML application.</title>
      <link>http://www.programmersheaven.com/mb/wireless/392423/392423/i-want-to-convert-my-readymade-j2me-application-to-wml-application/</link>
      <description>plz help me...&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/392423/392423/i-want-to-convert-my-readymade-j2me-application-to-wml-application/</guid>
      <pubDate>Wed, 17 Jun 2009 02:24:05 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Just to say hello</title>
      <link>http://www.programmersheaven.com/mb/wireless/390556/390556/just-to-say-hello/</link>
      <description>Hi.......  Wireless world</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/390556/390556/just-to-say-hello/</guid>
      <pubDate>Thu, 07 May 2009 07:07:17 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: sms-ing.. how to code?</title>
      <link>http://www.programmersheaven.com/mb/wireless/41743/384278/re-sms-ing-how-to-code/#384278</link>
      <description>Let me try and answer your questions.&lt;br /&gt;
&lt;br /&gt;
Do you need to receive SMS? If you need to receive SMS, you will need to host your own GSM device or modem so that people can send you SMS.&lt;br /&gt;
&lt;br /&gt;
If not, you can just use internet SMS gateways like clickatell to do the work, and post to them by HTTP, XML or email. The cost is about 6-8 cents per SMS. There are cheaper services, but not always reliable. If you need to host your own GSM device, you can use software like &lt;a href="http://www.kannel.org"&gt;http://www.kannel.org&lt;/a&gt; (GPL Open Source) or &lt;a href="http://visualtron.com/enterprise/sms-gateway."&gt;http://visualtron.com/enterprise/sms-gateway.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Regards.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/41743/384278/re-sms-ing-how-to-code/#384278</guid>
      <pubDate>Mon, 12 Jan 2009 19:45:57 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: sms-ing.. how to code?</title>
      <link>http://www.programmersheaven.com/mb/wireless/41743/383064/re-sms-ing-how-to-code/#383064</link>
      <description>: : : hi.. i wanted to write alittle program to send sms' to GSM handsets&lt;br /&gt;
: : : can someone point me in the right direction?&lt;br /&gt;
: : : are there any web pages out there that talk about the protocol or??&lt;br /&gt;
: : : please help.. :)&lt;br /&gt;
: : : i can code in c, c++ and java..&lt;br /&gt;
: : : thanx :)&lt;br /&gt;
: : : &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are few open source sms libraries out there like gnokii and gammu.&lt;br /&gt;
With it, you can control your GSM modem/handsets to send sms.&lt;br /&gt;
Try to visit this link&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://fillyourtime.blogspot.com/2008/12/sending-sms-from-pc.html"&gt;http://fillyourtime.blogspot.com/2008/12/sending-sms-from-pc.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
It provides guide for beginner to build a simple SMS gateway using Gammu. &lt;br /&gt;
&lt;br /&gt;
Hope that helps.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/41743/383064/re-sms-ing-how-to-code/#383064</guid>
      <pubDate>Mon, 15 Dec 2008 07:26:52 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: sms-ing.. how to code?</title>
      <link>http://www.programmersheaven.com/mb/wireless/41743/383062/re-sms-ing-how-to-code/#383062</link>
      <description>: : : hi.. i wanted to write alittle program to send sms' to GSM handsets&lt;br /&gt;
: : : can someone point me in the right direction?&lt;br /&gt;
: : : are there any web pages out there that talk about the protocol or??&lt;br /&gt;
: : : please help.. :)&lt;br /&gt;
: : : i can code in c, c++ and java..&lt;br /&gt;
: : : thanx :)&lt;br /&gt;
: : : &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are few open source sms libraries out there like gnokii and gammu.&lt;br /&gt;
With it, you can control your GSM modem/handsets to send sms.&lt;br /&gt;
Try to visit www.fillyourtime.blogspot.com. It provides guide for beginner to build a simple SMS gateway using Gammu. &lt;br /&gt;
&lt;br /&gt;
Hope that helps.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/41743/383062/re-sms-ing-how-to-code/#383062</guid>
      <pubDate>Mon, 15 Dec 2008 07:16:48 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: Send SMS to PC</title>
      <link>http://www.programmersheaven.com/mb/wireless/85633/382432/re-send-sms-to-pc/#382432</link>
      <description>&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
You can try these links&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.txtimpact.com/"&gt;http://www.txtimpact.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.wire2air.com/"&gt;http://www.wire2air.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
They provide Active X as well as HTTP API.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/85633/382432/re-send-sms-to-pc/#382432</guid>
      <pubDate>Mon, 01 Dec 2008 09:50:45 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: intercom using cell phones</title>
      <link>http://www.programmersheaven.com/mb/wireless/362568/362569/re-intercom-using-cell-phones/#362569</link>
      <description>: is it possible to use the phone without a sim card or change the &lt;br /&gt;
: frequency at which the mobile communicates.. actually what i want to &lt;br /&gt;
: do is use a couple of cell phones or more to communicate between &lt;br /&gt;
: each other over a short range without using any service provider, i &lt;br /&gt;
: am ready to buy/make a kit which can work as a kinda service &lt;br /&gt;
: provider between those two or more mobiles in a certain region.. say &lt;br /&gt;
: of radius 300-500m......&lt;br /&gt;
: &lt;br /&gt;
: on more larger scale.. i want to set up a kind of inter-com system &lt;br /&gt;
: using cell phones which people already have.. as of now.. the cell &lt;br /&gt;
: phones models are not important.. i just want to tweak them for my &lt;br /&gt;
: purpose&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: any suggestions, links or books will be very very helpful......&lt;br /&gt;
: &lt;br /&gt;
: thanks &lt;br /&gt;
: &lt;br /&gt;
It might be possible, but that would involve breaking and rebuilding the phone processor. Practically it is not possible, because nearly all the electronics are embedded into ic's.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/362568/362569/re-intercom-using-cell-phones/#362569</guid>
      <pubDate>Sun, 01 Jul 2007 10:44:57 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>intercom using cell phones</title>
      <link>http://www.programmersheaven.com/mb/wireless/362568/362568/intercom-using-cell-phones/</link>
      <description>is it possible to use the phone without a sim card or change the frequency at which the mobile communicates.. actually what i want to do is use a couple of cell phones or more to communicate between each other over a short range without using any service provider, i am ready to buy/make a kit which can work as a kinda service provider between those two or more mobiles in a certain region.. say of radius 300-500m......&lt;br /&gt;
&lt;br /&gt;
on more larger scale.. i want to set up a kind of inter-com system using cell phones which people already have.. as of now.. the cell phones models are not important.. i just want to tweak them for my purpose&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
any suggestions, links or books will be very very helpful......&lt;br /&gt;
&lt;br /&gt;
thanks &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/362568/362568/intercom-using-cell-phones/</guid>
      <pubDate>Sun, 01 Jul 2007 09:55:29 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>J2ME game testing tool</title>
      <link>http://www.programmersheaven.com/mb/wireless/356334/356334/j2me-game-testing-tool/</link>
      <description>HI &lt;br /&gt;
&lt;br /&gt;
i'm just wondering is there any tools out there to carry out testing with my j2me game applicaition.&lt;br /&gt;
&lt;br /&gt;
i really need help to get more on testing tool kits and what testing I should carry out to satisfy the j2me application is satisfying.&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/356334/356334/j2me-game-testing-tool/</guid>
      <pubDate>Tue, 20 Mar 2007 16:19:21 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: New to pocket pc programming</title>
      <link>http://www.programmersheaven.com/mb/wireless/331322/354963/re-new-to-pocket-pc-programming/#354963</link>
      <description />
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/331322/354963/re-new-to-pocket-pc-programming/#354963</guid>
      <pubDate>Sun, 04 Mar 2007 01:48:16 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: New to pocket pc programming</title>
      <link>http://www.programmersheaven.com/mb/wireless/331322/354961/re-new-to-pocket-pc-programming/#354961</link>
      <description />
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/331322/354961/re-new-to-pocket-pc-programming/#354961</guid>
      <pubDate>Sun, 04 Mar 2007 01:47:47 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>using j2me how to convert the html to wml</title>
      <link>http://www.programmersheaven.com/mb/wireless/354384/354384/using-j2me-how-to-convert-the-html-to-wml/</link>
      <description>hello friends&lt;br /&gt;
i am doing my final year &lt;br /&gt;
&lt;br /&gt;
i want a code to develop a j2me codings  to convert the html to wml.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
please help me&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i need a code please&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/354384/354384/using-j2me-how-to-convert-the-html-to-wml/</guid>
      <pubDate>Wed, 21 Feb 2007 11:08:56 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>problem in accessing SQL server directly from Pocket PC</title>
      <link>http://www.programmersheaven.com/mb/wireless/353240/353240/problem-in-accessing-sql-server-directly-from-pocket-pc/</link>
      <description>hiiii all,&lt;br /&gt;
&lt;br /&gt;
I m new in pocket PC i m using embedded Visual basic (eVB) for developing application for pocket PC. I want to access sql server directly from my pocket PC which is mobiled means there is a internet facility in my pocket PC. I created one server VB application to which i send the SQL query from my pocket PC using winsock control and that server app sends back the result to pocket PC application. This is working fine if my pocket PC is connected to cradle, but if i disconnect my pocket PC from cradle it is not working. Can anybody tell me the solution for this or any other method for accessing SQL server from my Pocket PC . I m using winsock control for this in eVB , i m trying for local database so i gave the value remotehost and remoteport as my local desktops host and port number. &lt;br /&gt;
             I want to connect to the sql server wirelessly directly from my pocket PC . Please can anybody tell me the solution for this.&lt;br /&gt;
&lt;br /&gt;
thanks in advance &lt;br /&gt;
&lt;br /&gt;
regards&lt;br /&gt;
spn&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/353240/353240/problem-in-accessing-sql-server-directly-from-pocket-pc/</guid>
      <pubDate>Thu, 01 Feb 2007 04:00:00 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Useful info</title>
      <link>http://www.programmersheaven.com/mb/wireless/352674/352674/useful-info/</link>
      <description>Hi&lt;br /&gt;
&lt;br /&gt;
Just thought I'd let you know it's good chance to know the other developer's view and trends in the industry.&lt;br /&gt;
(see link: http://www.recomdeveloper.com/uc/main/0c6a/?a=25&amp;amp;b= )&lt;br /&gt;
&lt;br /&gt;
There is a possibility to enter a prize draw for a high-end mobile phone too. &lt;br /&gt;
&lt;br /&gt;
I think its worth taking part.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/352674/352674/useful-info/</guid>
      <pubDate>Mon, 22 Jan 2007 08:29:04 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Free Website Designing solution.</title>
      <link>http://www.programmersheaven.com/mb/wireless/352475/352475/free-website-designing-solution/</link>
      <description>We focus on e business solutions at low prices serving the needs of small to medium businesses all over the world. We offer a wide range of custom web site design development and seo services at affordable prices starting from small presentation sites to complex multifunctional web portals and advanced custom e-commerce business solutions. &lt;br /&gt;
Service is everything - your satisfaction is guaranteed&lt;br /&gt;
That is why we would gladly accept the responsibility of taking care of your site. We want to save your time, so that you could devote yourself to the most important thing - your business. Allow us to maintain and support your web site. &lt;br /&gt;
Money back guarantee&lt;br /&gt;
A 30 Day money back guarantee for the first monthly fee. &lt;br /&gt;
&lt;br /&gt;
Fillup the below information for further inquarry. &lt;br /&gt;
Contact Name :&lt;br /&gt;
Organization Name: &lt;br /&gt;
E-mail Address : &lt;br /&gt;
Phone no: &lt;br /&gt;
Call us for Demostration&lt;br /&gt;
Call : 2390177 / 9841206820 &lt;br /&gt;
Check it out &lt;br /&gt;
&lt;a href="http://www.maxonlinejob.com/idevaffiliate/idevaffiliate.php?id=804"&gt;http://www.maxonlinejob.com/idevaffiliate/idevaffiliate.php?id=804&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/352475/352475/free-website-designing-solution/</guid>
      <pubDate>Thu, 18 Jan 2007 11:05:22 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Could not establish connection to network windows smartphone 5.0</title>
      <link>http://www.programmersheaven.com/mb/wireless/350716/350716/could-not-establish-connection-to-network-windows-smartphone-50/</link>
      <description>Hi to all i am constantly receiving this error message, i tried very hard to overcome this problem. Can any one provide any clue how to resolve this. I am getting this error message as soon as i tried to access RSS feed from my application. I am using following code to get it done. Right now m using .net framework 2.0 visual studio 2005 IDE.&lt;br /&gt;
&lt;br /&gt;
public DataSet DS(string strURL)&lt;br /&gt;
       {&lt;br /&gt;
           XmlTextReader reader = new XmlTextReader(strURL);&lt;br /&gt;
           DataSet ds = new DataSet();&lt;br /&gt;
           try&lt;br /&gt;
           {&lt;br /&gt;
               ds.ReadXml(reader); // exception generates here i.e.(Could not establish connection to network windows smartphone 5.0)      &lt;br /&gt;
           }&lt;br /&gt;
           catch(Exception ex)&lt;br /&gt;
           {&lt;br /&gt;
               throw(ex);&lt;br /&gt;
           }&lt;br /&gt;
           return ds;&lt;br /&gt;
       }&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/350716/350716/could-not-establish-connection-to-network-windows-smartphone-50/</guid>
      <pubDate>Thu, 14 Dec 2006 21:42:44 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>ad-hoc simulation</title>
      <link>http://www.programmersheaven.com/mb/wireless/350495/350495/ad-hoc-simulation/</link>
      <description>Any bids?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Ad hoc Simulation Phase I&lt;br /&gt;
&lt;br /&gt;
CSMA/ CA Simulation Problem&lt;br /&gt;
&lt;br /&gt;
Assume that we have a grid of 1Km * 1Km with the following conditions:&lt;br /&gt;
&lt;br /&gt;
Nodes are distributed randomly&lt;br /&gt;
&lt;br /&gt;
Number of nodes = 100&lt;br /&gt;
&lt;br /&gt;
Packet size = 1kB&lt;br /&gt;
&lt;br /&gt;
Ack packet = 2b&lt;br /&gt;
&lt;br /&gt;
Nodes are stationary&lt;br /&gt;
&lt;br /&gt;
Maximum transmission Range = 250m&lt;br /&gt;
&lt;br /&gt;
Propagation Speed = 2 * 108 m/s&lt;br /&gt;
&lt;br /&gt;
Transmission delay is ignored&lt;br /&gt;
&lt;br /&gt;
Simulation time = 2 hours&lt;br /&gt;
&lt;br /&gt;
Calculate the max probability of sending.&lt;br /&gt;
&lt;br /&gt;
 -------------------&lt;br /&gt;
&lt;br /&gt;
Ad hoc Simulation Phase II&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Assume that we have a grid of 1Km * 1Km with the following conditions:&lt;br /&gt;
&lt;br /&gt;
        Nodes are distributed randomly&lt;br /&gt;
&lt;br /&gt;
        Packet size = 1kB&lt;br /&gt;
&lt;br /&gt;
        Ack packet = 2b&lt;br /&gt;
&lt;br /&gt;
        Nodes are mobilizing; the speed is between 0 to 5 m/s&lt;br /&gt;
&lt;br /&gt;
        Nodes schedule a new event between 10 to 60 seconds&lt;br /&gt;
&lt;br /&gt;
        Maximum transmission Range = 250m&lt;br /&gt;
&lt;br /&gt;
        Propagation Speed = 2 * 108 m/s&lt;br /&gt;
&lt;br /&gt;
        Nodes are allowed to send to any node in the grid&lt;br /&gt;
&lt;br /&gt;
        Assume that each node will have a sufficient battery power till the end of the simulation time&lt;br /&gt;
&lt;br /&gt;
        Select an ad hoc routing protocol as discussed in the class (on-demand or cluster-based)&lt;br /&gt;
&lt;br /&gt;
        Use the CSMA/CA model that you built in Phase I&lt;br /&gt;
&lt;br /&gt;
        Do the performance evaluation for 50, 100, and 200 nodes&lt;br /&gt;
&lt;br /&gt;
        Simulation time 2 hours&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Calculate the following:&lt;br /&gt;
&lt;br /&gt;
        Average waiting time per packet that is the time from the packet is scheduled to be sent till it reaches the destination&lt;br /&gt;
&lt;br /&gt;
        Average contention time per packet&lt;br /&gt;
&lt;br /&gt;
        Average Throughput&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Deadline is 01/01/2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/350495/350495/ad-hoc-simulation/</guid>
      <pubDate>Mon, 11 Dec 2006 04:40:14 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>great idea.. need help</title>
      <link>http://www.programmersheaven.com/mb/wireless/348940/348940/great-idea-need-help/</link>
      <description>My colleague and I have an awesome idea that has to do with PDAs and wireless internet. We're both freshman in college and don't know much about programming so if anyone is interested in helping us that would be great. We went to a venture capital firm and they literally said that our idea was the shit but said that in order for them to invest in us we would need help from someone with a technical background to ensure that it could be done. if you're willing to help... khodges@ucsc.edu&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/348940/348940/great-idea-need-help/</guid>
      <pubDate>Tue, 14 Nov 2006 20:15:55 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>Re: to connect to copmuters wirelessly</title>
      <link>http://www.programmersheaven.com/mb/wireless/263412/346891/re-to-connect-to-copmuters-wirelessly/#346891</link>
      <description>: hi !&lt;br /&gt;
: i am a first year b.tech IT student and have no back ground of electronic field. I am doing a small programe that is connecting to computers wirelessly. so plz can any one give me some idea of what type of componentes are required .&lt;br /&gt;
: and also related topics.&lt;br /&gt;
: thanks.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
File Transfer    &lt;br /&gt;
Desktop Scaling    &lt;br /&gt;
Windows Authentication &lt;br /&gt;
Deployment Tools&lt;br /&gt;
Server Authentication&lt;br /&gt;
UNIX Authentication (NIS/NIS+)&lt;br /&gt;
File Transfer &lt;br /&gt;
AES Session Encryption and Tamper-Proofing&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/263412/346891/re-to-connect-to-copmuters-wirelessly/#346891</guid>
      <pubDate>Sun, 15 Oct 2006 13:03:05 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>looking for CTO and Co-Founder</title>
      <link>http://www.programmersheaven.com/mb/wireless/346284/346284/looking-for-cto-and-co-founder/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I am an entreprenuer from San Francisco, CA and I have an idea for a mobile application that interfaces with a very popular web property.&lt;br /&gt;
&lt;br /&gt;
I have no technical expertise, however, I am looking to meet and discuss this application with someone who would have the technical knowledge to develop the application.&lt;br /&gt;
&lt;br /&gt;
If you are interested in becoming part of a new venture please contact me at my Yahoo email address to discuss things further.  I do have a Non-Disclosure Agreement that would need to be executed in order to protect the confidentiality of application.&lt;br /&gt;
&lt;br /&gt;
Thank you,&lt;br /&gt;
&lt;br /&gt;
Tim Sparks&lt;br /&gt;
tsparks33@yahoo.com&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/346284/346284/looking-for-cto-and-co-founder/</guid>
      <pubDate>Wed, 04 Oct 2006 11:24:13 -0700</pubDate>
      <category>Wireless development</category>
    </item>
    <item>
      <title>intelligent system for wireless</title>
      <link>http://www.programmersheaven.com/mb/wireless/346036/346036/intelligent-system-for-wireless/</link>
      <description>I'm trying to find info on if it is possible to build an intelligent system for e-learning on a PDA.  My knowledge of PDA's is basic, and all i know is that you can program applications for them in C/C++.&lt;br /&gt;
&lt;br /&gt;
Is there any case based reasoning languages that I can use on a PDA??&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any tips will be much appreciated!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/wireless/346036/346036/intelligent-system-for-wireless/</guid>
      <pubDate>Sat, 30 Sep 2006 08:28:22 -0700</pubDate>
      <category>Wireless development</category>
    </item>
  </channel>
</rss>