<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for GCab</title>
	<atom:link href="http://www.albertoandmiye.com/android/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.albertoandmiye.com/android</link>
	<description>An Android Developer Challenge Entry</description>
	<pubDate>Sat, 05 Jul 2008 10:30:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on GCab Entry by admin</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-12</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 06 May 2008 21:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-12</guid>
		<description>@Christian,

Currently the app on the device polls the server with a unique ID that it received when it made the request. This could easily be changed to use SMS but the current implementation hopefully makes it easier for the competition judging since they don't have to simulate an SMS message being sent to the device for it to work. Since the focus for the ADC is on the device end user experience I decided to keep it as simple as possible.</description>
		<content:encoded><![CDATA[<p>@Christian,</p>
<p>Currently the app on the device polls the server with a unique ID that it received when it made the request. This could easily be changed to use SMS but the current implementation hopefully makes it easier for the competition judging since they don&#8217;t have to simulate an SMS message being sent to the device for it to work. Since the focus for the ADC is on the device end user experience I decided to keep it as simple as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by cbraun75</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-11</link>
		<dc:creator>cbraun75</dc:creator>
		<pubDate>Tue, 06 May 2008 12:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-11</guid>
		<description>Hey thanx for answering.

Just have one more questions ...
in which way do you get the acceptanze back from the taxi server? SMS or what notification intent is the android app listening? (last 3 screenshots) 

Thanxx

Christian</description>
		<content:encoded><![CDATA[<p>Hey thanx for answering.</p>
<p>Just have one more questions &#8230;<br />
in which way do you get the acceptanze back from the taxi server? SMS or what notification intent is the android app listening? (last 3 screenshots) </p>
<p>Thanxx</p>
<p>Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by admin</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-10</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 05 May 2008 23:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-10</guid>
		<description>@Maulik,

Interesting idea, let us know how it goes. As for the question regarding connecting to the web server, I use the URL's openConnection() method like this:
&lt;br /&gt;
&lt;code&gt;
URLConnection conn = url.openConnection();
&lt;/code&gt;
&lt;br /&gt;
You can then set it up for input or output and use I/O streams for reading/writing. I've seen other ways as well but this one seems easy to me. Hope this helps and good luck!</description>
		<content:encoded><![CDATA[<p>@Maulik,</p>
<p>Interesting idea, let us know how it goes. As for the question regarding connecting to the web server, I use the URL&#8217;s openConnection() method like this:<br />
<br />
<code><br />
URLConnection conn = url.openConnection();<br />
</code><br />
<br />
You can then set it up for input or output and use I/O streams for reading/writing. I&#8217;ve seen other ways as well but this one seems easy to me. Hope this helps and good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by Maulik</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-9</link>
		<dc:creator>Maulik</dc:creator>
		<pubDate>Mon, 05 May 2008 22:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-9</guid>
		<description>Hello Admin,

Is it possible if you can share the code where I can make request to Servlet using HTTP connection on Apache web server?

I have function as belows:
	private void invokeServlet(URL url) {
		// TODO Auto-generated method stub
		
		HttpURLConnection hc =null; 
		hc = new HttpURLConnection(url);
		InputStream is = null;
		OutputStream os = null;
        StringBuffer b = new StringBuffer();
        
        try
        {
        	hc.connect();
        }catch(Exception e)
        {
        	e.printStackTrace();
        }
	}

Here it doesnt allow me to call the constructor 
hc = new HttpURLConnection(url);</description>
		<content:encoded><![CDATA[<p>Hello Admin,</p>
<p>Is it possible if you can share the code where I can make request to Servlet using HTTP connection on Apache web server?</p>
<p>I have function as belows:<br />
	private void invokeServlet(URL url) {<br />
		// TODO Auto-generated method stub</p>
<p>		HttpURLConnection hc =null;<br />
		hc = new HttpURLConnection(url);<br />
		InputStream is = null;<br />
		OutputStream os = null;<br />
        StringBuffer b = new StringBuffer();</p>
<p>        try<br />
        {<br />
        	hc.connect();<br />
        }catch(Exception e)<br />
        {<br />
        	e.printStackTrace();<br />
        }<br />
	}</p>
<p>Here it doesnt allow me to call the constructor<br />
hc = new HttpURLConnection(url);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by Maulik</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-8</link>
		<dc:creator>Maulik</dc:creator>
		<pubDate>Mon, 05 May 2008 22:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-8</guid>
		<description>Hello,

Actually we are building the relevant application called Taxi Ride Sharing where based on the user location, the system will display no of users who want to share the ride when they have same destination. This is very typical case in metro cities like San Francisco and NY..

I will higly appreciate if anybody has relevant material.

My email is mjshah85@yahoo.com

Once we are done with this app, we will post it here as well anddev.org</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Actually we are building the relevant application called Taxi Ride Sharing where based on the user location, the system will display no of users who want to share the ride when they have same destination. This is very typical case in metro cities like San Francisco and NY..</p>
<p>I will higly appreciate if anybody has relevant material.</p>
<p>My email is <a href="mailto:mjshah85@yahoo.com">mjshah85@yahoo.com</a></p>
<p>Once we are done with this app, we will post it here as well anddev.org</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by admin</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-7</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 05 May 2008 18:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-7</guid>
		<description>@Parth, thanks for the comment and good luck as well. Sorry I am not distributing the source code but feel free to ask any questions and I'll try to answer.

@Christian, Sounds like an interesting project you are working on. Here are some responses to your questions:

- The server is implemented in PHP, for no particular reason, it was just convenient because of my hosting provider.
- I'm using normal XML, there is not alot of data being exchanged and I wanted to keep it lightweight.
- The data is parsed on the Android side using the Simple API for XML (SAX).

Hope this helps and thanks for visiting!</description>
		<content:encoded><![CDATA[<p>@Parth, thanks for the comment and good luck as well. Sorry I am not distributing the source code but feel free to ask any questions and I&#8217;ll try to answer.</p>
<p>@Christian, Sounds like an interesting project you are working on. Here are some responses to your questions:</p>
<p>- The server is implemented in PHP, for no particular reason, it was just convenient because of my hosting provider.<br />
- I&#8217;m using normal XML, there is not alot of data being exchanged and I wanted to keep it lightweight.<br />
- The data is parsed on the Android side using the Simple API for XML (SAX).</p>
<p>Hope this helps and thanks for visiting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by cbraun75</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-6</link>
		<dc:creator>cbraun75</dc:creator>
		<pubDate>Mon, 05 May 2008 14:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-6</guid>
		<description>Hi!

Very interesting this app - think it could work good. Cross the fingers for the chellenge!

Have the same group of people in mention because I'm making a diploma thesis of android for mobile communities at the telematic area. So i want to create a mobile community. Maybe you could give me some answers of your implementation.

- Your Server has implemted a webservice in php? 
- Which technologies did you use? SOAP XML RPC ? Normal XML? For the communication between android and the Server
- How did you parse the answer in Android or did you make this with a sms and an intent receiver of this incoming thing?


Thanxx a lot for answering!

CU

Christian
- Germany -</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Very interesting this app - think it could work good. Cross the fingers for the chellenge!</p>
<p>Have the same group of people in mention because I&#8217;m making a diploma thesis of android for mobile communities at the telematic area. So i want to create a mobile community. Maybe you could give me some answers of your implementation.</p>
<p>- Your Server has implemted a webservice in php?<br />
- Which technologies did you use? SOAP XML RPC ? Normal XML? For the communication between android and the Server<br />
- How did you parse the answer in Android or did you make this with a sms and an intent receiver of this incoming thing?</p>
<p>Thanxx a lot for answering!</p>
<p>CU</p>
<p>Christian<br />
- Germany -</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GCab Entry by Parth</title>
		<link>http://www.albertoandmiye.com/android/2008/04/gcab-entry/#comment-5</link>
		<dc:creator>Parth</dc:creator>
		<pubDate>Sun, 20 Apr 2008 15:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.albertoandmiye.com/android/?p=3#comment-5</guid>
		<description>Hey,
Good job...i have also submites 3 apps...but urs is cool one...n novel, i tried my hand at Google maps, but was unsuccessful...

i would be gratful if u can send me your source code on my e-mail addresss...

All the best 4 contest...God bless</description>
		<content:encoded><![CDATA[<p>Hey,<br />
Good job&#8230;i have also submites 3 apps&#8230;but urs is cool one&#8230;n novel, i tried my hand at Google maps, but was unsuccessful&#8230;</p>
<p>i would be gratful if u can send me your source code on my e-mail addresss&#8230;</p>
<p>All the best 4 contest&#8230;God bless</p>
]]></content:encoded>
	</item>
</channel>
</rss>
