<?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: Submit HTML form using Perl or Java ?</title>
	<atom:link href="http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/</link>
	<description>---------------------------------------------</description>
	<lastBuildDate>Tue, 17 Nov 2009 11:18:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kunal</title>
		<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/comment-page-1/#comment-30893</link>
		<dc:creator>Kunal</dc:creator>
		<pubDate>Thu, 29 Oct 2009 02:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/#comment-30893</guid>
		<description>Does it throw any error ? 

Are you using ActiveState perl or cygwin -perl ?</description>
		<content:encoded><![CDATA[<p>Does it throw any error ? </p>
<p>Are you using ActiveState perl or cygwin -perl ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harae</title>
		<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/comment-page-1/#comment-30871</link>
		<dc:creator>harae</dc:creator>
		<pubDate>Wed, 28 Oct 2009 18:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/#comment-30871</guid>
		<description>the perl code is not working form on windows</description>
		<content:encoded><![CDATA[<p>the perl code is not working form on windows</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunal</title>
		<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/comment-page-1/#comment-893</link>
		<dc:creator>Kunal</dc:creator>
		<pubDate>Mon, 02 Jun 2008 08:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/#comment-893</guid>
		<description>Good one!

BTW The server which I was hitting with the script does redirection ( HTTP Status Code 302 ). wget tried to follow the link but could not take care of POST params for the next link. 
curl did not follow the link. ( I&#039;ll have to see if there is any option for redirection ;)</description>
		<content:encoded><![CDATA[<p>Good one!</p>
<p>BTW The server which I was hitting with the script does redirection ( HTTP Status Code 302 ). wget tried to follow the link but could not take care of POST params for the next link.<br />
curl did not follow the link. ( I&#8217;ll have to see if there is any option for redirection <img src='http://kspace.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sahil</title>
		<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/comment-page-1/#comment-864</link>
		<dc:creator>sahil</dc:creator>
		<pubDate>Fri, 30 May 2008 18:31:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/#comment-864</guid>
		<description>Of course, if you wanted a one-liner to use on linux, you could try this : 

$ wget --post-data=&quot;=&quot; 
or 
$ curl --data = 

For example, posting to the page http://sample.aquafire.org/post.php can be done as : 

$ wget --post-data=&quot;test=something&quot; http://sample.aquafire.org/post.php

$ curl --data test=asdsad http://sample.aquafire.org/post.php

Hope this helps :)</description>
		<content:encoded><![CDATA[<p>Of course, if you wanted a one-liner to use on linux, you could try this : </p>
<p>$ wget &#8211;post-data=&#8221;=&#8221;<br />
or<br />
$ curl &#8211;data = </p>
<p>For example, posting to the page <a href="http://sample.aquafire.org/post.php" rel="nofollow">http://sample.aquafire.org/post.php</a> can be done as : </p>
<p>$ wget &#8211;post-data=&#8221;test=something&#8221; <a href="http://sample.aquafire.org/post.php" rel="nofollow">http://sample.aquafire.org/post.php</a></p>
<p>$ curl &#8211;data test=asdsad <a href="http://sample.aquafire.org/post.php" rel="nofollow">http://sample.aquafire.org/post.php</a></p>
<p>Hope this helps <img src='http://kspace.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sahil</title>
		<link>http://kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/comment-page-1/#comment-852</link>
		<dc:creator>sahil</dc:creator>
		<pubDate>Thu, 29 May 2008 17:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.kspace.in/blog/2008/05/29/submit-html-form-using-perl-or-java/#comment-852</guid>
		<description>Hey Kunal,
 Neat hack... :) I&#039;m sure this will be helpful... 

besides, Java... phoo... i think I&#039;ll stick to perl for the moment... 

- Sahil</description>
		<content:encoded><![CDATA[<p>Hey Kunal,<br />
 Neat hack&#8230; <img src='http://kspace.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;m sure this will be helpful&#8230; </p>
<p>besides, Java&#8230; phoo&#8230; i think I&#8217;ll stick to perl for the moment&#8230; </p>
<p>- Sahil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
