<?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: Link: POSTing XML data, without using HTTPService</title>
	<atom:link href="http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm</link>
	<description>it's easy once you know how.</description>
	<lastBuildDate>Fri, 12 Mar 2010 19:52:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: trertance</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-5925</link>
		<dc:creator>trertance</dc:creator>
		<pubDate>Mon, 09 Nov 2009 14:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-5925</guid>
		<description>Hello.
My PC worked slowly, many errors. Help me, please to fix buggs on my computer. 
I used Windows XP.
With best regards,
trertance</description>
		<content:encoded><![CDATA[<p>Hello.<br />
My PC worked slowly, many errors. Help me, please to fix buggs on my computer.<br />
I used Windows XP.<br />
With best regards,<br />
trertance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hydrolyze</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-5829</link>
		<dc:creator>Hydrolyze</dc:creator>
		<pubDate>Fri, 16 Oct 2009 01:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-5829</guid>
		<description>Just wanted to say hello all. This is my first post.

I came to learn a lot here.</description>
		<content:encoded><![CDATA[<p>Just wanted to say hello all. This is my first post.</p>
<p>I came to learn a lot here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Logan</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-4632</link>
		<dc:creator>Logan</dc:creator>
		<pubDate>Mon, 22 Jun 2009 11:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-4632</guid>
		<description>Oops, it ate my code:
http://pastie.org/520067</description>
		<content:encoded><![CDATA[<p>Oops, it ate my code:<br />
<a href="http://pastie.org/520067" rel="nofollow">http://pastie.org/520067</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Logan</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-4631</link>
		<dc:creator>Logan</dc:creator>
		<pubDate>Mon, 22 Jun 2009 11:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-4631</guid>
		<description>We use HTTPService for some of our XML POSTs to our RESTful web service. It seems to work fine for us.

&lt;code&gt;
	
		
			
				somevalue
				anothervalue
			
		
		
		
		
		
	
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>We use HTTPService for some of our XML POSTs to our RESTful web service. It seems to work fine for us.</p>
<p><code></p>
<p>				somevalue<br />
				anothervalue</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-4629</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 22 Jun 2009 07:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-4629</guid>
		<description>Thanks Wai - that looks like a good solution too.</description>
		<content:encoded><![CDATA[<p>Thanks Wai &#8211; that looks like a good solution too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wai Lam</title>
		<link>http://www.psyked.co.uk/external-links/link-posting-xml-data-without-using-httpservice.htm/comment-page-1#comment-4627</link>
		<dc:creator>Wai Lam</dc:creator>
		<pubDate>Mon, 22 Jun 2009 03:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.psyked.co.uk/?p=911#comment-4627</guid>
		<description>You can try post raw xml as text by.

var request:HTTPService = new HTTPService();
request.method = &quot;post&quot;;
request.resultFormat = &quot;text&quot;;
request.contentType = &quot;text/xml&quot;;
request.request = xml.toString();
request.send();

Also work with json by setting.

request.contentType = &quot;application/json&quot;;
request.request = JSON.encode(data);</description>
		<content:encoded><![CDATA[<p>You can try post raw xml as text by.</p>
<p>var request:HTTPService = new HTTPService();<br />
request.method = &#8220;post&#8221;;<br />
request.resultFormat = &#8220;text&#8221;;<br />
request.contentType = &#8220;text/xml&#8221;;<br />
request.request = xml.toString();<br />
request.send();</p>
<p>Also work with json by setting.</p>
<p>request.contentType = &#8220;application/json&#8221;;<br />
request.request = JSON.encode(data);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
