<?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: jQuery, JSON, and ASP.NET</title>
	<atom:link href="http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/</link>
	<description>ASP.NET, HTML, CSS, Visual Studio, CSharp, VB.NET and other programming items of interest.</description>
	<lastBuildDate>Mon, 15 Mar 2010 11:52:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: nick b-w</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1603</link>
		<dc:creator>nick b-w</dc:creator>
		<pubDate>Wed, 18 Feb 2009 23:16:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1603</guid>
		<description>you can configure your webservice to allow &quot;get&#039;s&quot; but switched off by default as stated for security reasons</description>
		<content:encoded><![CDATA[<p>you can configure your webservice to allow &#8220;get&#8217;s&#8221; but switched off by default as stated for security reasons</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxim&#8217;s blog &#187; links for 2009-01-18</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1466</link>
		<dc:creator>Maxim&#8217;s blog &#187; links for 2009-01-18</dc:creator>
		<pubDate>Mon, 19 Jan 2009 09:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1466</guid>
		<description>[...] jQuery, JSON, and ASP.NET Example how to call ASP.NET web service from client side using Ajax call with jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] jQuery, JSON, and ASP.NET Example how to call ASP.NET web service from client side using Ajax call with jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop &#8211; January 17, 2009 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1459</link>
		<dc:creator>Dew Drop &#8211; January 17, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Sun, 18 Jan 2009 02:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1459</guid>
		<description>[...] jQuery, JSON, and ASP.NET (Dave M. Bush) [...]</description>
		<content:encoded><![CDATA[<p>[...] jQuery, JSON, and ASP.NET (Dave M. Bush) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1434</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 15 Jan 2009 18:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1434</guid>
		<description>limitation of asmx.. security reasons.</description>
		<content:encoded><![CDATA[<p>limitation of asmx.. security reasons.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean O'Steen</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1433</link>
		<dc:creator>Sean O'Steen</dc:creator>
		<pubDate>Thu, 15 Jan 2009 17:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1433</guid>
		<description>Oops, Hopefully this snippet will work better:

If you add:
&lt;webServices&gt;
        &lt;protocols&gt;
			&lt;add name=&quot;HttpGet&quot; /&gt;
			&lt;add name=&quot;HttpPost&quot; /&gt;
        &lt;/protocols&gt;
&lt;/webServices&gt;

to the web.config file, will a GET request work in this case?</description>
		<content:encoded><![CDATA[<p>Oops, Hopefully this snippet will work better:</p>
<p>If you add:<br />
&lt;webServices&gt;<br />
        &lt;protocols&gt;<br />
			&lt;add name=&#8221;HttpGet&#8221; /&gt;<br />
			&lt;add name=&#8221;HttpPost&#8221; /&gt;<br />
        &lt;/protocols&gt;<br />
&lt;/webServices&gt;</p>
<p>to the web.config file, will a GET request work in this case?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean O'Steen</title>
		<link>http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/comment-page-1/#comment-1432</link>
		<dc:creator>Sean O'Steen</dc:creator>
		<pubDate>Thu, 15 Jan 2009 17:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dmbcllc.com/2009/01/15/jquery-json-and-aspnet/#comment-1432</guid>
		<description>Is the post requirement a limitation of the jQuery instance or the ASMX?

If you were to add:


        
			
			
        


Could a GET request work?</description>
		<content:encoded><![CDATA[<p>Is the post requirement a limitation of the jQuery instance or the ASMX?</p>
<p>If you were to add:</p>
<p>Could a GET request work?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.211 seconds -->
