<?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: New Tutorial &#8211; Introduction to Flash Remoting with Fluorine</title>
	<atom:link href="http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/feed/" rel="self" type="application/rss+xml" />
	<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/</link>
	<description>RIA Fanatic, ramblings on Flex, Flash, Silverlight, UX, .net</description>
	<lastBuildDate>Tue, 20 Jul 2010 18:40:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: appleo</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-92654</link>
		<dc:creator>appleo</dc:creator>
		<pubDate>Thu, 31 Jul 2008 18:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-92654</guid>
		<description>
My above post isn&#039;t displaying correctly (it had some HTML characters in it which didn&#039;t get escaped) so here it is again in HTML format...


Thanks for posting this easy to follow tutorial. Now if only I can get it to workâ€¦ 


I&#039;m using 

Flash MX 2004
Visual Studio 2005
FluorineFX from fluorinefx.com (the fluorine.thesilentgroup.com address in your tutorial forwards here). 
I installed both the MX 2004 for ActionScript 1 and for ActionScript 2 modules.



I tried the tutorial a couple of ways. 


The first time in VS2005 I created the c# web app (which I named &quot;FluorineTest1&quot;) 
using Fluorine&#039;s &quot;FluorineFx ASP.NET Web Site&quot; template 
(their site calls it the wizard) which creates the web.config, Gateway.aspx, etc, for you. 

The &quot;httpModules&quot; section in web.config is different from the tutorial however, the module is: 

    &lt;add name=&quot;FluorineGateway&quot; type=&quot;FluorineFx.FluorineGateway, FluorineFx&quot;/&gt;

not

    &lt;add name=&quot;FluorineGateway&quot; type=&quot;com.TheSilentGroup.Fluorine.FluorineGateway,com.TheSilentGroup.Fluorine&quot; /&gt;

Since the app isn&#039;t at TheSilentGroup.com anymore, I figured the wizard version is newer/correct. 
Anyway if I use the version from the tutorial I get an error: 
Error opening URL &quot;http://localhost/FluorineTest2/Gateway.aspx&quot;



The second time I tried just creating a regular ASP.NET Web Site (named &quot;FluorineTest2&quot;) 
and manually adding the web.config section and Gateway.aspx, like in the tutorial.




I got past a couple of errors on my own which I will describe, but have hit a third error that I can&#039;t seem to figure out.



&lt;strong&gt;ERROR #1&lt;/strong&gt;: 
When I tried running the Flash movie in MX2004 I got an error 
&quot;Unrecognized attribute &#039;requirePermission&#039;&quot;. 
It turned out the &quot;FluorineTest1&quot; web site was set to .net 1.1 in IIS 
(I didn&#039;t see this error when I created a regular site w/o the template - a problem with their template?) 
so I changed it to 2.0 and the error went away.
To do this:

open IIS
open the properties for the virtual directory
goto the ASP.NET tab
change ASP.NET version dropdown to 2.0



&lt;strong&gt;ERROR #2&lt;/strong&gt;: 
However now Flash was displaying an error: 
&quot;It is an error to use a section registered as allowDefinition=&#039;MachineToApplication&#039;&quot;. 
It turned out the &quot;FluorineTest1&quot; was not set up as an application in IIS. 
I changed it to an application and the error went away.
To do this:

open IIS
Right click on the virtual directory &amp; click Properties
goto the Directory tab
under Application Settings, next to &quot;Application name&quot;, click the [Create] button
(if it says [Remove] then the virual directory is already an application)



&lt;strong&gt;ERROR #3&lt;/strong&gt;: 
But now when I ran the Flash movie, I saw the message &quot;There has been an error&quot;. 
To get some more info I changed handleError to print the message:

function handleError(fe:FaultEvent)
{
    trace(&#039;ERROR: &#039; + fe.fault.faultstring);
}

which returns 

    ERROR: Failed to locate the requested type FluorineTest.HelloWorld



Can anyone see what I might be doing wrong?


Much appreciated!
</description>
		<content:encoded><![CDATA[<p>My above post isn&#8217;t displaying correctly (it had some HTML characters in it which didn&#8217;t get escaped) so here it is again in HTML format&#8230;</p>
<p>Thanks for posting this easy to follow tutorial. Now if only I can get it to workâ€¦ </p>
<p>I&#8217;m using </p>
<p>Flash MX 2004<br />
Visual Studio 2005<br />
FluorineFX from fluorinefx.com (the fluorine.thesilentgroup.com address in your tutorial forwards here).<br />
I installed both the MX 2004 for ActionScript 1 and for ActionScript 2 modules.</p>
<p>I tried the tutorial a couple of ways. </p>
<p>The first time in VS2005 I created the c# web app (which I named &quot;FluorineTest1&quot;)<br />
using Fluorine&#8217;s &quot;FluorineFx ASP.NET Web Site&quot; template<br />
(their site calls it the wizard) which creates the web.config, Gateway.aspx, etc, for you. </p>
<p>The &quot;httpModules&quot; section in web.config is different from the tutorial however, the module is: </p>
<p>    &lt;add name=&quot;FluorineGateway&quot; type=&quot;FluorineFx.FluorineGateway, FluorineFx&quot;/&gt;</p>
<p>not</p>
<p>    &lt;add name=&quot;FluorineGateway&quot; type=&quot;com.TheSilentGroup.Fluorine.FluorineGateway,com.TheSilentGroup.Fluorine&quot; /&gt;</p>
<p>Since the app isn&#8217;t at TheSilentGroup.com anymore, I figured the wizard version is newer/correct.<br />
Anyway if I use the version from the tutorial I get an error:<br />
Error opening URL &quot;http://localhost/FluorineTest2/Gateway.aspx&quot;</p>
<p>The second time I tried just creating a regular ASP.NET Web Site (named &quot;FluorineTest2&quot;)<br />
and manually adding the web.config section and Gateway.aspx, like in the tutorial.</p>
<p>I got past a couple of errors on my own which I will describe, but have hit a third error that I can&#8217;t seem to figure out.</p>
<p><strong>ERROR #1</strong>:<br />
When I tried running the Flash movie in MX2004 I got an error<br />
&quot;Unrecognized attribute &#8216;requirePermission&#8217;&quot;.<br />
It turned out the &quot;FluorineTest1&quot; web site was set to .net 1.1 in IIS<br />
(I didn&#8217;t see this error when I created a regular site w/o the template &#8211; a problem with their template?)<br />
so I changed it to 2.0 and the error went away.<br />
To do this:</p>
<p>open IIS<br />
open the properties for the virtual directory<br />
goto the ASP.NET tab<br />
change ASP.NET version dropdown to 2.0</p>
<p><strong>ERROR #2</strong>:<br />
However now Flash was displaying an error:<br />
&quot;It is an error to use a section registered as allowDefinition=&#8217;MachineToApplication&#8217;&quot;.<br />
It turned out the &quot;FluorineTest1&quot; was not set up as an application in IIS.<br />
I changed it to an application and the error went away.<br />
To do this:</p>
<p>open IIS<br />
Right click on the virtual directory &amp; click Properties<br />
goto the Directory tab<br />
under Application Settings, next to &quot;Application name&quot;, click the [Create] button<br />
(if it says [Remove] then the virual directory is already an application)</p>
<p><strong>ERROR #3</strong>:<br />
But now when I ran the Flash movie, I saw the message &quot;There has been an error&quot;.<br />
To get some more info I changed handleError to print the message:</p>
<p>function handleError(fe:FaultEvent)<br />
{<br />
    trace(&#8216;ERROR: &#8216; + fe.fault.faultstring);<br />
}</p>
<p>which returns </p>
<p>    ERROR: Failed to locate the requested type FluorineTest.HelloWorld</p>
<p>Can anyone see what I might be doing wrong?</p>
<p>Much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: appleo</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-92644</link>
		<dc:creator>appleo</dc:creator>
		<pubDate>Thu, 31 Jul 2008 18:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-92644</guid>
		<description>Thanks for posting this easy to follow tutorial. Now if only I can get it to work... I&#039;m using Flash MX 2004, Visual Studio 2005 and the FluorineFX from www.fluorinefx.com (the fluorine.thesilentgroup.com address in your tutorial forwards here). I installed both the MX 2004 for ActionScript 1 and for ActionScript 2 modules. 

I got past a couple of errors on my own which I will describe, but have hit a third error that I can&#039;t seem to figure out. 

I tried the tutorial a couple of ways. The first time in VS2005 I created the c# web app (which I named &quot;FluorineTest1&quot;) using Fluorine&#039;s &quot;FluorineFx ASP.NET Web Site&quot; template (their site calls it the wizard) which creates the web.config, Gateway.aspx, etc, for you. The &quot;httpModules&quot; section in web.config is different from the tutorial however, the module is: 


not



Since the app isn&#039;t at TheSilentGroup.com anymore, I figured the wizard version is correct. Anyway if I use the version from the tutorial I get an error: Error opening URL &quot;http://localhost/FluorineTest2/Gateway.aspx&quot;

The second time I tried just creating a regular ASP.NET Web Site app and manually adding the web.config section and Gateway.aspx, like in the tutorial. 

ERROR #1
However when I tried running the Flash movie in MX2004 I got an error &quot;Unrecognized attribute &#039;requirePermission&#039;&quot;. It turned out the &quot;FluorineTest1&quot; web site was set to .net 1.1 in IIS (a problem with their template?), so I changed it to 2.0 (in IIS open the properties for the virtual  directory, goto the ASP.NET tab, and change ASP.NET version dropdown to 2.0) and the error went away. 

ERROR #2
However now Flash was displaying an error &quot;It is an error to use a section registered as allowDefinition=&#039;MachineToApplication&#039;&quot;. It turned out the &quot;FluorineTest1&quot; was not set up as an application in IIS. In the virtual directory&#039;s properties, Directory tab, under Application Settings, next to &quot;Application name&quot; there is a [Create] button you click and it turns it into an application. The error then went away. 

ERROR #3
But now when I run the Flash, I am seeing the message &quot;There has been an error&quot;. To get some more info I changed handleError to print the message: 

function handleError(fe:FaultEvent)
{
	trace(&#039;There has been an error: &#039; + fe.fault.faultstring);
}

which is 

There has been an error: Failed to locate the requested  type FluorineTest.HelloWorld

Can anyone see what I might be doing wrong? 

Much appreciated!</description>
		<content:encoded><![CDATA[<p>Thanks for posting this easy to follow tutorial. Now if only I can get it to work&#8230; I&#8217;m using Flash MX 2004, Visual Studio 2005 and the FluorineFX from <a href="http://www.fluorinefx.com" rel="nofollow">http://www.fluorinefx.com</a> (the fluorine.thesilentgroup.com address in your tutorial forwards here). I installed both the MX 2004 for ActionScript 1 and for ActionScript 2 modules. </p>
<p>I got past a couple of errors on my own which I will describe, but have hit a third error that I can&#8217;t seem to figure out. </p>
<p>I tried the tutorial a couple of ways. The first time in VS2005 I created the c# web app (which I named &#8220;FluorineTest1&#8243;) using Fluorine&#8217;s &#8220;FluorineFx ASP.NET Web Site&#8221; template (their site calls it the wizard) which creates the web.config, Gateway.aspx, etc, for you. The &#8220;httpModules&#8221; section in web.config is different from the tutorial however, the module is: </p>
<p>not</p>
<p>Since the app isn&#8217;t at TheSilentGroup.com anymore, I figured the wizard version is correct. Anyway if I use the version from the tutorial I get an error: Error opening URL &#8220;http://localhost/FluorineTest2/Gateway.aspx&#8221;</p>
<p>The second time I tried just creating a regular ASP.NET Web Site app and manually adding the web.config section and Gateway.aspx, like in the tutorial. </p>
<p>ERROR #1<br />
However when I tried running the Flash movie in MX2004 I got an error &#8220;Unrecognized attribute &#8216;requirePermission&#8217;&#8221;. It turned out the &#8220;FluorineTest1&#8243; web site was set to .net 1.1 in IIS (a problem with their template?), so I changed it to 2.0 (in IIS open the properties for the virtual  directory, goto the ASP.NET tab, and change ASP.NET version dropdown to 2.0) and the error went away. </p>
<p>ERROR #2<br />
However now Flash was displaying an error &#8220;It is an error to use a section registered as allowDefinition=&#8217;MachineToApplication&#8217;&#8221;. It turned out the &#8220;FluorineTest1&#8243; was not set up as an application in IIS. In the virtual directory&#8217;s properties, Directory tab, under Application Settings, next to &#8220;Application name&#8221; there is a [Create] button you click and it turns it into an application. The error then went away. </p>
<p>ERROR #3<br />
But now when I run the Flash, I am seeing the message &#8220;There has been an error&#8221;. To get some more info I changed handleError to print the message: </p>
<p>function handleError(fe:FaultEvent)<br />
{<br />
	trace(&#8216;There has been an error: &#8216; + fe.fault.faultstring);<br />
}</p>
<p>which is </p>
<p>There has been an error: Failed to locate the requested  type FluorineTest.HelloWorld</p>
<p>Can anyone see what I might be doing wrong? </p>
<p>Much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: telewizja n</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-32539</link>
		<dc:creator>telewizja n</dc:creator>
		<pubDate>Sat, 10 Nov 2007 11:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-32539</guid>
		<description>great tutorial</description>
		<content:encoded><![CDATA[<p>great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Basu</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-14705</link>
		<dc:creator>Basu</dc:creator>
		<pubDate>Fri, 18 May 2007 04:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-14705</guid>
		<description>Hi Danny,
Your samples helped me in solving lot of problems which i am facing in remoting.. thanks a lot :o)

i have a question ....can u please tell me  what is the importance of bringing remote class and remotedebud class components on to the Stage??

Thanks,
Basu</description>
		<content:encoded><![CDATA[<p>Hi Danny,<br />
Your samples helped me in solving lot of problems which i am facing in remoting.. thanks a lot <img src='http://danny-t.co.uk/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )</p>
<p>i have a question &#8230;.can u please tell me  what is the importance of bringing remote class and remotedebud class components on to the Stage??</p>
<p>Thanks,<br />
Basu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sushant</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-8193</link>
		<dc:creator>Sushant</dc:creator>
		<pubDate>Tue, 27 Mar 2007 14:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-8193</guid>
		<description>Dear Danny,
     Your tutorial is simply great. Also Fluorine documentation helped a great deal after your tutorial got working. Just need to mention that I was confused how to cmopile to .NET version 2 assembly. But later I compiled at command line and got it working right away. Thanks really!!! I am looking forward to read all your posts and tuts if any and forthcoming.

Thanks once again.

Sushant Yalgudkar</description>
		<content:encoded><![CDATA[<p>Dear Danny,<br />
     Your tutorial is simply great. Also Fluorine documentation helped a great deal after your tutorial got working. Just need to mention that I was confused how to cmopile to .NET version 2 assembly. But later I compiled at command line and got it working right away. Thanks really!!! I am looking forward to read all your posts and tuts if any and forthcoming.</p>
<p>Thanks once again.</p>
<p>Sushant Yalgudkar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-5400</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 20 Feb 2007 22:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-5400</guid>
		<description>I am also looking for a flourine/Flex 2 solution. I guess i will check back to see if you have any updates</description>
		<content:encoded><![CDATA[<p>I am also looking for a flourine/Flex 2 solution. I guess i will check back to see if you have any updates</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DannyT</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-5084</link>
		<dc:creator>DannyT</dc:creator>
		<pubDate>Fri, 16 Feb 2007 16:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-5084</guid>
		<description>Okay so it was new when I write it</description>
		<content:encoded><![CDATA[<p>Okay so it was new when I write it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-5079</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 16 Feb 2007 14:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-5079</guid>
		<description>New?</description>
		<content:encoded><![CDATA[<p>New?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-2134</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 23 Dec 2006 15:08:23 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-2134</guid>
		<description>Greets...As I step thru the VS side of things I can run the project....no errors and brings up a blank page. As I strup thru the Flash side of things I hit the handleError branch. Any thoughts on pinpointing where the problem is?</description>
		<content:encoded><![CDATA[<p>Greets&#8230;As I step thru the VS side of things I can run the project&#8230;.no errors and brings up a blank page. As I strup thru the Flash side of things I hit the handleError branch. Any thoughts on pinpointing where the problem is?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DannyT</title>
		<link>http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/comment-page-1/#comment-416</link>
		<dc:creator>DannyT</dc:creator>
		<pubDate>Sat, 04 Nov 2006 19:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/07/07/new-tutorial-introduction-to-flash-remoting-with-fluorine/#comment-416</guid>
		<description>CW, as2 is compiled down to as1, you might want to take a look at buraks Actionscript Viewer which lets you decompile swfs into as1 or as2. Otherwise try the fluorine mailling list.

Sorry I can&#039;t be more help at the moment, have a log going on at work and not much time spare.</description>
		<content:encoded><![CDATA[<p>CW, as2 is compiled down to as1, you might want to take a look at buraks Actionscript Viewer which lets you decompile swfs into as1 or as2. Otherwise try the fluorine mailling list.</p>
<p>Sorry I can&#8217;t be more help at the moment, have a log going on at work and not much time spare.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
