<?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: How to use .NET Generic classes from ColdFusion</title>
	<atom:link href="http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/</link>
	<description>My Views on ColdFusion, Java and related technologies</description>
	<lastBuildDate>Mon, 26 Jul 2010 14:26:19 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tom</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-811</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 05 Mar 2010 20:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-811</guid>
		<description>Just thought I&#039;d post this note here.  We were struggling to get the JNBridge to work and it was like JNBProxy.exe wouldn&#039;t create the jar files on the fly but if I manually create with JNBProxyGUI.exe then it works.  Seemed like a file permission problem but we finally realized it was our Sandbox Security in CF8.  So the lesson is:  The path to /jnbridge must be in the security sandbox of the app or the whole thing is going nowhere.</description>
		<content:encoded><![CDATA[<p>Just thought I&#8217;d post this note here.  We were struggling to get the JNBridge to work and it was like JNBProxy.exe wouldn&#8217;t create the jar files on the fly but if I manually create with JNBProxyGUI.exe then it works.  Seemed like a file permission problem but we finally realized it was our Sandbox Security in CF8.  So the lesson is:  The path to /jnbridge must be in the security sandbox of the app or the whole thing is going nowhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Lamborn</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-787</link>
		<dc:creator>Brent Lamborn</dc:creator>
		<pubDate>Fri, 05 Feb 2010 19:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-787</guid>
		<description>There seems to be a similar issue with .NET nullable types such as DateTime?. Nullable DateTime throws a similar exception.</description>
		<content:encoded><![CDATA[<p>There seems to be a similar issue with .NET nullable types such as DateTime?. Nullable DateTime throws a similar exception.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Scott</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-727</link>
		<dc:creator>Andrew Scott</dc:creator>
		<pubDate>Tue, 24 Nov 2009 00:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-727</guid>
		<description>Rupesh, All I know is that the code you posted does not work. However if you change the code as I listed above, it will run without any problems.</description>
		<content:encoded><![CDATA[<p>Rupesh, All I know is that the code you posted does not work. However if you change the code as I listed above, it will run without any problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-726</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 23 Nov 2009 21:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-726</guid>
		<description>Wont work:
cfset list = CreateObject(&quot;.net&quot;,&quot;System.Collections.Generic.List&quot;)

Works:
cfset eventList = CreateObject(&quot;.net&quot;,&quot;System.Collections.Generic.List__1&quot;, &quot;dotnetCoreProxy.jar&quot;)

WordPress removed the code in the first reply.</description>
		<content:encoded><![CDATA[<p>Wont work:<br />
cfset list = CreateObject(&#8221;.net&#8221;,&#8221;System.Collections.Generic.List&#8221;)</p>
<p>Works:<br />
cfset eventList = CreateObject(&#8221;.net&#8221;,&#8221;System.Collections.Generic.List__1&#8243;, &#8220;dotnetCoreProxy.jar&#8221;)</p>
<p>WordPress removed the code in the first reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-725</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 23 Nov 2009 21:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-725</guid>
		<description>Hi Rupesh.  Yes when I tried this code:


I got the same error mentioned.

However this code:



Worked as expected.</description>
		<content:encoded><![CDATA[<p>Hi Rupesh.  Yes when I tried this code:</p>
<p>I got the same error mentioned.</p>
<p>However this code:</p>
<p>Worked as expected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-724</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 23 Nov 2009 20:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-724</guid>
		<description>Rupesh,

I am still receiving the Class not found in the specified Assembly using the CF9 Developers Edition.  I am using the following code (as per your example)
  and generating that error.  How should I proceed?

Thanks,

Rob</description>
		<content:encoded><![CDATA[<p>Rupesh,</p>
<p>I am still receiving the Class not found in the specified Assembly using the CF9 Developers Edition.  I am using the following code (as per your example)<br />
  and generating that error.  How should I proceed?</p>
<p>Thanks,</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rupesh Kumar</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-723</link>
		<dc:creator>Rupesh Kumar</dc:creator>
		<pubDate>Mon, 23 Nov 2009 07:14:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-723</guid>
		<description>Andrew, 
See my reply above. It was the name of the proxy jar that I generated. It is not the same jar as dotnetCodeProxy.jar.

Rupesh</description>
		<content:encoded><![CDATA[<p>Andrew,<br />
See my reply above. It was the name of the proxy jar that I generated. It is not the same jar as dotnetCodeProxy.jar.</p>
<p>Rupesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rupesh Kumar</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-722</link>
		<dc:creator>Rupesh Kumar</dc:creator>
		<pubDate>Mon, 23 Nov 2009 07:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-722</guid>
		<description>Yes. it did get fixed in CF9. Could you confirm that it does not work for you?</description>
		<content:encoded><![CDATA[<p>Yes. it did get fixed in CF9. Could you confirm that it does not work for you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Scott</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-721</link>
		<dc:creator>Andrew Scott</dc:creator>
		<pubDate>Sat, 21 Nov 2009 17:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-721</guid>
		<description>Rupesh you mght want to update this blog to change dotnetProxy.jar to the correct name dotnetCoreProxy.jar</description>
		<content:encoded><![CDATA[<p>Rupesh you mght want to update this blog to change dotnetProxy.jar to the correct name dotnetCoreProxy.jar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/comment-page-1/#comment-720</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sat, 21 Nov 2009 00:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.rupeshk.org/blog/index.php/2009/08/how-to-use-net-generic-classes-from-coldfusion/#comment-720</guid>
		<description>Did this get fixed for CF9 because either I&#039;m still seeing the &quot;Class System.Collections.Generic.List not found in the specified assembly list. &quot; error.</description>
		<content:encoded><![CDATA[<p>Did this get fixed for CF9 because either I&#8217;m still seeing the &#8220;Class System.Collections.Generic.List not found in the specified assembly list. &#8221; error.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
