<?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 for blog.nitorsys</title>
	<atom:link href="http://blog.nitorsys.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nitorsys.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Jun 2011 15:46:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Flash Builder 4 login Air application using a cfc web service by Jose Angel</title>
		<link>http://blog.nitorsys.com/flash-builder-4-login/#comment-6994</link>
		<dc:creator>Jose Angel</dc:creator>
		<pubDate>Wed, 15 Jun 2011 15:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=143#comment-6994</guid>
		<description>Hi, I am trying to get some interactivity and functionality to my site. I have a mysql database and a coldfusion hosting service and I have most of the tools I need to build the funcionality I want to get. But I want to go pro with the security. I need a good and solid login process. I looked at your sample here but couldn&#039;t make it work myself. 

Is there a way you could help me out? Send me a quote perhaps? All I need is a secure login right now but I&#039;d like to have somebody assisting me in this process.

Regards</description>
		<content:encoded><![CDATA[<p>Hi, I am trying to get some interactivity and functionality to my site. I have a mysql database and a coldfusion hosting service and I have most of the tools I need to build the funcionality I want to get. But I want to go pro with the security. I need a good and solid login process. I looked at your sample here but couldn&#8217;t make it work myself. </p>
<p>Is there a way you could help me out? Send me a quote perhaps? All I need is a secure login right now but I&#8217;d like to have somebody assisting me in this process.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restore an SQL 2008 .bak file to my local SQL 2008 server by JT</title>
		<link>http://blog.nitorsys.com/restore-sql2008-bak-file-to-local-machine/#comment-6271</link>
		<dc:creator>JT</dc:creator>
		<pubDate>Wed, 04 May 2011 00:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=282#comment-6271</guid>
		<description>Thanks. Much appreciated.</description>
		<content:encoded><![CDATA[<p>Thanks. Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash Builder 4 login Air application using a cfc web service by Ernest Breau</title>
		<link>http://blog.nitorsys.com/flash-builder-4-login/#comment-4044</link>
		<dc:creator>Ernest Breau</dc:creator>
		<pubDate>Thu, 06 Jan 2011 16:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=143#comment-4044</guid>
		<description>I figured out how to get this all to work in a flexmobile project.  I would like to know when you have decided that the user is authenticated, where can i store this information for all my views to be able to use it?</description>
		<content:encoded><![CDATA[<p>I figured out how to get this all to work in a flexmobile project.  I would like to know when you have decided that the user is authenticated, where can i store this information for all my views to be able to use it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax call to coldfusion component using jQuery by giorgos</title>
		<link>http://blog.nitorsys.com/ajax-call-to-coldfusion-component-using-jquery/#comment-3206</link>
		<dc:creator>giorgos</dc:creator>
		<pubDate>Mon, 06 Dec 2010 08:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=242#comment-3206</guid>
		<description>Hi Rob,

If your cf component works as expected then check this to your jquery code,
The datatype expected should be xml and not json format. Try to change this to see how is it going.

dataType: &quot;json&quot; --&gt;  dataType: &quot;xml&quot;

Cheers, Giorgos</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>If your cf component works as expected then check this to your jquery code,<br />
The datatype expected should be xml and not json format. Try to change this to see how is it going.</p>
<p>dataType: &#8220;json&#8221; &#8211;>  dataType: &#8220;xml&#8221;</p>
<p>Cheers, Giorgos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax call to coldfusion component using jQuery by Rob</title>
		<link>http://blog.nitorsys.com/ajax-call-to-coldfusion-component-using-jquery/#comment-3163</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 04 Dec 2010 21:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=242#comment-3163</guid>
		<description>It didn&#039;t post everything...Here is the rest



// &lt;!--
$(document).ready(function(){

	$(&quot;#CountriesList&quot;).change(function()	{
		if($(this).val() != &#039;&#039;){
			$.ajax({
				type: &quot;POST&quot;,
				url: &quot;http://localhost:8500/theadstreet/adStreetLayouts/adStreetLookup.cfc?method=getStates&quot;,
				data: ({ state_country_ID_FK: $(this).val() }),
				dataType: &quot;json&quot;,
				success: function(json){
					$(&#039;#SelectedState option&#039;).remove();
					$(json).find(&#039;record&#039;).each(function() {
						$(&quot;#SelectedState&quot;).append(&#039;&#039; + $(this).find(&#039;state_name&#039;).text() + &#039;&#039;);
					});
				}
			});
		}
	});
});

// --&gt;








Select Country:

...
#CountriesList.Country_name#

Select State:
...

</description>
		<content:encoded><![CDATA[<p>It didn&#8217;t post everything&#8230;Here is the rest</p>
<p>// &lt;!&#8211;<br />
$(document).ready(function(){</p>
<p>	$(&quot;#CountriesList&quot;).change(function()	{<br />
		if($(this).val() != &#039;&#039;){<br />
			$.ajax({<br />
				type: &quot;POST&quot;,<br />
				url: &quot;http://localhost:8500/theadstreet/adStreetLayouts/adStreetLookup.cfc?method=getStates&quot;,<br />
				data: ({ state_country_ID_FK: $(this).val() }),<br />
				dataType: &quot;json&quot;,<br />
				success: function(json){<br />
					$(&#039;#SelectedState option&#039;).remove();<br />
					$(json).find(&#039;record&#039;).each(function() {<br />
						$(&quot;#SelectedState&quot;).append(&#039;&#8217; + $(this).find(&#8217;state_name&#8217;).text() + &#8221;);<br />
					});<br />
				}<br />
			});<br />
		}<br />
	});<br />
});</p>
<p>// &#8211;&gt;</p>
<p>Select Country:</p>
<p>&#8230;<br />
#CountriesList.Country_name#</p>
<p>Select State:<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax call to coldfusion component using jQuery by Rob</title>
		<link>http://blog.nitorsys.com/ajax-call-to-coldfusion-component-using-jquery/#comment-3162</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 04 Dec 2010 21:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=242#comment-3162</guid>
		<description>I have been trying to get this to work and am having some problems with the XML.  I am am getting a result back but it appears to be a wddxpacket and either I do not know how to read the packet or Jquey doesn&#039;t think it is valid XML.  Any help would be appreciated.

Here is what I have:

CFC
&lt;!--- get States--&gt;

	
    
    
  &lt;!--- Get states from DB --&gt;
  	
    	Select state_ID_PK, state_name 
        From statesTbl
         
        	Where state_country_ID_FK = #arguments.state_country_ID_FK#
        
        Order by state_name
    
  &lt;!--- Return result --&gt;
  


CFM



// &lt;!--
$(document).ready(function(){

	$(&quot;#CountriesList&quot;).change(function()	{
		if($(this).val() != &#039;&#039;){
			$.ajax({
				type: &quot;POST&quot;,
				url: &quot;http://localhost:8500/theadstreet/adStreetLayouts/adStreetLookup.cfc?method=getStates&quot;,
				data: ({ state_country_ID_FK: $(this).val() }),
				dataType: &quot;json&quot;,
				success: function(json){
					$(&#039;#SelectedState option&#039;).remove();
					$(json).find(&#039;record&#039;).each(function() {
						$(&quot;#SelectedState&quot;).append(&#039;&#039; + $(this).find(&#039;state_name&#039;).text() + &#039;&#039;);
					});
				}
			});
		}
	});
});

// --&gt;








Select Country:

...
#CountriesList.Country_name#

Select State:
...

</description>
		<content:encoded><![CDATA[<p>I have been trying to get this to work and am having some problems with the XML.  I am am getting a result back but it appears to be a wddxpacket and either I do not know how to read the packet or Jquey doesn&#8217;t think it is valid XML.  Any help would be appreciated.</p>
<p>Here is what I have:</p>
<p>CFC<br />
<!--- get States--></p>
<p>  <!--- Get states from DB --></p>
<p>    	Select state_ID_PK, state_name<br />
        From statesTbl</p>
<p>        	Where state_country_ID_FK = #arguments.state_country_ID_FK#</p>
<p>        Order by state_name</p>
<p>  <!--- Return result --></p>
<p>CFM</p>
<p>// &lt;!&#8211;<br />
$(document).ready(function(){</p>
<p>	$(&quot;#CountriesList&quot;).change(function()	{<br />
		if($(this).val() != &#039;&#039;){<br />
			$.ajax({<br />
				type: &quot;POST&quot;,<br />
				url: &quot;http://localhost:8500/theadstreet/adStreetLayouts/adStreetLookup.cfc?method=getStates&quot;,<br />
				data: ({ state_country_ID_FK: $(this).val() }),<br />
				dataType: &quot;json&quot;,<br />
				success: function(json){<br />
					$(&#039;#SelectedState option&#039;).remove();<br />
					$(json).find(&#039;record&#039;).each(function() {<br />
						$(&quot;#SelectedState&quot;).append(&#039;&#8217; + $(this).find(&#8217;state_name&#8217;).text() + &#8221;);<br />
					});<br />
				}<br />
			});<br />
		}<br />
	});<br />
});</p>
<p>// &#8211;&gt;</p>
<p>Select Country:</p>
<p>&#8230;<br />
#CountriesList.Country_name#</p>
<p>Select State:<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restore an SQL 2008 .bak file to my local SQL 2008 server by H</title>
		<link>http://blog.nitorsys.com/restore-sql2008-bak-file-to-local-machine/#comment-3120</link>
		<dc:creator>H</dc:creator>
		<pubDate>Wed, 01 Dec 2010 15:26:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=282#comment-3120</guid>
		<description>Dude. thank you. you made my day :)</description>
		<content:encoded><![CDATA[<p>Dude. thank you. you made my day :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SEO is good for you! by Spoon Rest&#160;</title>
		<link>http://blog.nitorsys.com/seo-is-good-for-you/#comment-2457</link>
		<dc:creator>Spoon Rest&#160;</dc:creator>
		<pubDate>Wed, 13 Oct 2010 17:34:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=74#comment-2457</guid>
		<description>i always sign up on SEO forums because i want to learn more about SEO and internet marketing-``</description>
		<content:encoded><![CDATA[<p>i always sign up on SEO forums because i want to learn more about SEO and internet marketing-&#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create a &#8220;Domain WHO IS&#8221; Air application using the Flash Builder 4 beta by pop up</title>
		<link>http://blog.nitorsys.com/domain-who-is-air-application-using-a-free-web-service/#comment-2424</link>
		<dc:creator>pop up</dc:creator>
		<pubDate>Sat, 09 Oct 2010 12:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=175#comment-2424</guid>
		<description>Thanks for your sharing!!!</description>
		<content:encoded><![CDATA[<p>Thanks for your sharing!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax call to coldfusion component using jQuery by giorgos</title>
		<link>http://blog.nitorsys.com/ajax-call-to-coldfusion-component-using-jquery/#comment-1881</link>
		<dc:creator>giorgos</dc:creator>
		<pubDate>Mon, 23 Aug 2010 07:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nitorsys.com/?p=242#comment-1881</guid>
		<description>Hi Sam, 

Of course you can do that if you like to..

cheers,
Giorgos</description>
		<content:encoded><![CDATA[<p>Hi Sam, </p>
<p>Of course you can do that if you like to..</p>
<p>cheers,<br />
Giorgos</p>
]]></content:encoded>
	</item>
</channel>
</rss>

