<?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: HTTP POST with curl</title>
	<atom:link href="http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/</link>
	<description>My blog for things that I find interesting.</description>
	<lastBuildDate>Tue, 16 Mar 2010 01:19:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Caffeine Driven Development &#187; Blog Archive &#187; L33t Links #66</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-125</link>
		<dc:creator>Caffeine Driven Development &#187; Blog Archive &#187; L33t Links #66</dc:creator>
		<pubDate>Tue, 12 Jan 2010 07:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-125</guid>
		<description>[...] HTTP POST with curl [...]</description>
		<content:encoded><![CDATA[<p>[...] HTTP POST with curl [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smily</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-124</link>
		<dc:creator>Smily</dc:creator>
		<pubDate>Wed, 04 Nov 2009 15:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-124</guid>
		<description>Interesting way to not lose track, I have one file were I stick all code related snippets that I might need later, its getting a little large, maybe it is time for a new strategy:)</description>
		<content:encoded><![CDATA[<p>Interesting way to not lose track, I have one file were I stick all code related snippets that I might need later, its getting a little large, maybe it is time for a new strategy:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peko</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-123</link>
		<dc:creator>peko</dc:creator>
		<pubDate>Wed, 24 Jun 2009 23:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-123</guid>
		<description>Thank you very much, it was very useful for me :)</description>
		<content:encoded><![CDATA[<p>Thank you very much, it was very useful for me <img src='http://www.paulstimesink.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bentos</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-122</link>
		<dc:creator>Bentos</dc:creator>
		<pubDate>Mon, 18 May 2009 07:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-122</guid>
		<description>In some cases, xml-based web service API&#039;s require this header in order to work:
  -H &quot;Content-Type: text/xml&quot; . Placed after the data and before the url, of course:

curl --silent --data-ascii &quot;${myrequest}&quot; -H &quot;Content-Type: text/xml&quot; http://${myxmlservice}</description>
		<content:encoded><![CDATA[<p>In some cases, xml-based web service API&#8217;s require this header in order to work:<br />
  -H &#8220;Content-Type: text/xml&#8221; . Placed after the data and before the url, of course:</p>
<p>curl &#8211;silent &#8211;data-ascii &#8220;${myrequest}&#8221; -H &#8220;Content-Type: text/xml&#8221; <a href="http://$" rel="nofollow">http://$</a>{myxmlservice}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-121</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 16 Feb 2009 17:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-121</guid>
		<description>curl -u &quot;username:password&quot; http://www.whatever.com/whatever
- or -
curl http://username:password@www.whatever.com/whatever
If it&#039;s a site with a self-signed cert and you have to connect over https, you may have to add the --insecure (I think the short version is -k but don&#039;t quote me on that) option to keep curl from yelling at you about certificate mismatches.</description>
		<content:encoded><![CDATA[<p>curl -u &#8220;username:password&#8221; <a href="http://www.whatever.com/whatever" rel="nofollow">http://www.whatever.com/whatever</a><br />
- or -<br />
curl <a href="http://username:password@www.whatever.com/whatever" rel="nofollow">http://username:password@www.whatever.com/whatever</a><br />
If it&#8217;s a site with a self-signed cert and you have to connect over https, you may have to add the &#8211;insecure (I think the short version is -k but don&#8217;t quote me on that) option to keep curl from yelling at you about certificate mismatches.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-120</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Sun, 30 Nov 2008 18:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-120</guid>
		<description>I tried out but with no success, I might have to pass my password and user name to be able to , I guess....
Does any body knows how to pass password and user name while posting with curl?
Thanks for any hint!
andy</description>
		<content:encoded><![CDATA[<p>I tried out but with no success, I might have to pass my password and user name to be able to , I guess&#8230;.<br />
Does any body knows how to pass password and user name while posting with curl?<br />
Thanks for any hint!<br />
andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-119</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Sun, 30 Nov 2008 18:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-119</guid>
		<description>Thats right, I&#039;m gonna try it out right  now and comment how its going</description>
		<content:encoded><![CDATA[<p>Thats right, I&#8217;m gonna try it out right  now and comment how its going</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ch</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-118</link>
		<dc:creator>ch</dc:creator>
		<pubDate>Sat, 22 Nov 2008 20:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-118</guid>
		<description>&lt;p&gt;thanks for posting.. exactly what I was looking for :)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>thanks for posting.. exactly what I was looking for <img src='http://www.paulstimesink.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MMORPG Forums - Runescape World of Warcraft</title>
		<link>http://www.paulstimesink.com/post/2005/06/29/http-post-with-curl/comment-page-1/#comment-117</link>
		<dc:creator>MMORPG Forums - Runescape World of Warcraft</dc:creator>
		<pubDate>Sat, 08 Nov 2008 07:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulstimesink.com/wordpress/post/2005/06/29/http-post-with-curl/#comment-117</guid>
		<description>thanks for the cron code</description>
		<content:encoded><![CDATA[<p>thanks for the cron code</p>
]]></content:encoded>
	</item>
</channel>
</rss>
