<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Titanium Tutorial: How to upload a file to a server</title>
	<atom:link href="http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/</link>
	<description>The musings of a mad software developer</description>
	<lastBuildDate>Wed, 10 Mar 2010 11:55:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: vikas</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-3581</link>
		<dc:creator>vikas</dc:creator>
		<pubDate>Wed, 24 Feb 2010 09:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-3581</guid>
		<description>Also can you please provide what PHP code you have written at server side to upload video.</description>
		<content:encoded><![CDATA[<p>Also can you please provide what PHP code you have written at server side to upload video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikas</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-3580</link>
		<dc:creator>vikas</dc:creator>
		<pubDate>Wed, 24 Feb 2010 09:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-3580</guid>
		<description>Hello,

   Can you please tell me how to select a particular file from my iphone video library for uploading it to server.Is there any control in titanium
so I can pass file name to header.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>   Can you please tell me how to select a particular file from my iphone video library for uploading it to server.Is there any control in titanium<br />
so I can pass file name to header.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Serge Meunier</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-1590</link>
		<dc:creator>Serge Meunier</dc:creator>
		<pubDate>Mon, 09 Nov 2009 07:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-1590</guid>
		<description>Hi Pankaj,

I have not tried using the Android emulator in Titanium yet, so cannot help you for now. If I do find something I will let you know :)</description>
		<content:encoded><![CDATA[<p>Hi Pankaj,</p>
<p>I have not tried using the Android emulator in Titanium yet, so cannot help you for now. If I do find something I will let you know <img src='http://www.sergemeunier.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-1352</link>
		<dc:creator>Pankaj</dc:creator>
		<pubDate>Mon, 02 Nov 2009 17:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-1352</guid>
		<description>I am using android emulator. camera is working it gives me a default image and i can test uploader for this image.
The same code is working for Iphone app but it is giving error for android.
should i make changes for android.I am able to send request to backend but its not finding image information.

var c = Titanium.Network.createHTTPClient();
c.open(&#039;POST&#039;,&quot;http://192.168.2.103:3000/photos&quot;);
c.setRequestHeader(&quot;Content-Type&quot;,&quot;multipart/form-data&quot;);
c.send({

    media:pic,
    message: message.value

});

actually i am facing problem sending photo data in android</description>
		<content:encoded><![CDATA[<p>I am using android emulator. camera is working it gives me a default image and i can test uploader for this image.<br />
The same code is working for Iphone app but it is giving error for android.<br />
should i make changes for android.I am able to send request to backend but its not finding image information.</p>
<p>var c = Titanium.Network.createHTTPClient();<br />
c.open(&#8216;POST&#8217;,&#8221;http://192.168.2.103:3000/photos&#8221;);<br />
c.setRequestHeader(&#8220;Content-Type&#8221;,&#8221;multipart/form-data&#8221;);<br />
c.send({</p>
<p>    media:pic,<br />
    message: message.value</p>
<p>});</p>
<p>actually i am facing problem sending photo data in android</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Serge Meunier</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-95</link>
		<dc:creator>Serge Meunier</dc:creator>
		<pubDate>Thu, 30 Jul 2009 15:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-95</guid>
		<description>sendFile works perfectly. Except, when I wrote the code I used in this tutirual, I needed to send form data with the upload, which meant that sendFile was out of the question. Thus, as a more generic way of sending files, I chose this as my method.

I have successfully gotten downloading of files working, and will soon put up a tutorial on how it is done.</description>
		<content:encoded><![CDATA[<p>sendFile works perfectly. Except, when I wrote the code I used in this tutirual, I needed to send form data with the upload, which meant that sendFile was out of the question. Thus, as a more generic way of sending files, I chose this as my method.</p>
<p>I have successfully gotten downloading of files working, and will soon put up a tutorial on how it is done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parijat Sahai</title>
		<link>http://www.sergemeunier.com/blog/titanium-tutorial-how-to-upload-a-file-to-a-server/comment-page-1/#comment-94</link>
		<dc:creator>Parijat Sahai</dc:creator>
		<pubDate>Thu, 30 Jul 2009 13:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.sergemeunier.com/blog/?p=46#comment-94</guid>
		<description>Great example.  What was the problem with sendFile method that required you to use this workaround?

Secondly, have you tried downloading a file?</description>
		<content:encoded><![CDATA[<p>Great example.  What was the problem with sendFile method that required you to use this workaround?</p>
<p>Secondly, have you tried downloading a file?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
