<?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 Mariush T. - Freelance Flex/PureMVC Developer - blog</title>
	<atom:link href="http://mariusht.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariusht.com/blog</link>
	<description>A blog about Flex Development.</description>
	<lastBuildDate>Wed, 10 Mar 2010 17:53:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Sending messages from server socket to client sockets by rudi</title>
		<link>http://mariusht.com/blog/2010/02/13/sending-messages-from-server-socket-to-client-sockets/comment-page-1/#comment-275</link>
		<dc:creator>rudi</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1857#comment-275</guid>
		<description>thank you very much!!!</description>
		<content:encoded><![CDATA[<p>thank you very much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending messages from server socket to client sockets by Mariush T.</title>
		<link>http://mariusht.com/blog/2010/02/13/sending-messages-from-server-socket-to-client-sockets/comment-page-1/#comment-273</link>
		<dc:creator>Mariush T.</dc:creator>
		<pubDate>Wed, 10 Mar 2010 14:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1857#comment-273</guid>
		<description>You can use a Responder to handle results or register event listener to SQLStatement. Justin Palmer has great tutorial &lt;a href=&quot;http://alternateidea.com/blog/articles/2007/8/7/asynchronous-sqlite-adobe-air&quot; rel=&quot;nofollow&quot;&gt;Dealing with Asynchronous Queries in Adobe AIR&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You can use a Responder to handle results or register event listener to SQLStatement. Justin Palmer has great tutorial <a href="http://alternateidea.com/blog/articles/2007/8/7/asynchronous-sqlite-adobe-air" rel="nofollow">Dealing with Asynchronous Queries in Adobe AIR</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending messages from server socket to client sockets by rudi</title>
		<link>http://mariusht.com/blog/2010/02/13/sending-messages-from-server-socket-to-client-sockets/comment-page-1/#comment-272</link>
		<dc:creator>rudi</dc:creator>
		<pubDate>Wed, 10 Mar 2010 09:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1857#comment-272</guid>
		<description>Thanks! but in the Server the asyncronous operation is in local and made with an sqlite connection... I don&#039;t have myService.send()
How can I do?
my server call this function:
public function execute(sql:String, parameters:Object, handler:Function, itemClass:Class=null):void
{
	sqlRunner.execute(sql, parameters, handler, itemClass);
}
but this function return void and not a token...
I&#039;am lost ;)</description>
		<content:encoded><![CDATA[<p>Thanks! but in the Server the asyncronous operation is in local and made with an sqlite connection&#8230; I don&#8217;t have myService.send()<br />
How can I do?<br />
my server call this function:<br />
public function execute(sql:String, parameters:Object, handler:Function, itemClass:Class=null):void<br />
{<br />
	sqlRunner.execute(sql, parameters, handler, itemClass);<br />
}<br />
but this function return void and not a token&#8230;<br />
I&#8217;am lost <img src='http://mariusht.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending messages from server socket to client sockets by Mariush T.</title>
		<link>http://mariusht.com/blog/2010/02/13/sending-messages-from-server-socket-to-client-sockets/comment-page-1/#comment-271</link>
		<dc:creator>Mariush T.</dc:creator>
		<pubDate>Wed, 10 Mar 2010 00:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1857#comment-271</guid>
		<description>Hi Rudi,
Use AsyncToken and add any property name to it. 
var token:AsyncToken = myService.send();
token.socket = event.target;

When the result comes back, get not only the data from the ResultEvent but the token as well:
var token:AsyncToken = resultEvent.token;
var socket:Socket = token.socket

&lt;a href=&quot;http://mariusht.com/files/blog/server_socket/AsyncServerSocketDemo.mxml.html&quot; rel=&quot;nofollow&quot;&gt;AsyncServerSocketDemo.mxml&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi Rudi,<br />
Use AsyncToken and add any property name to it.<br />
var token:AsyncToken = myService.send();<br />
token.socket = event.target;</p>
<p>When the result comes back, get not only the data from the ResultEvent but the token as well:<br />
var token:AsyncToken = resultEvent.token;<br />
var socket:Socket = token.socket</p>
<p><a href="http://mariusht.com/files/blog/server_socket/AsyncServerSocketDemo.mxml.html" rel="nofollow">AsyncServerSocketDemo.mxml</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending messages from server socket to client sockets by rudi</title>
		<link>http://mariusht.com/blog/2010/02/13/sending-messages-from-server-socket-to-client-sockets/comment-page-1/#comment-270</link>
		<dc:creator>rudi</dc:creator>
		<pubDate>Tue, 09 Mar 2010 22:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1857#comment-270</guid>
		<description>hi!
I am trying to play with server socket but I don&#039;t realize how solve this:
many clients send to server a lot of different requests, the server get this requests, find data from a db in asyncronous mode and respond to a proper client... how can the responder find the correct client???
Sorry for my poor english, and phereps for the stupid request!
But if you have same suggests... thanks!</description>
		<content:encoded><![CDATA[<p>hi!<br />
I am trying to play with server socket but I don&#8217;t realize how solve this:<br />
many clients send to server a lot of different requests, the server get this requests, find data from a db in asyncronous mode and respond to a proper client&#8230; how can the responder find the correct client???<br />
Sorry for my poor english, and phereps for the stupid request!<br />
But if you have same suggests&#8230; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export Data to Excel File by Mariush T.</title>
		<link>http://mariusht.com/blog/2010/01/21/export-data-to-excel-file/comment-page-1/#comment-264</link>
		<dc:creator>Mariush T.</dc:creator>
		<pubDate>Tue, 23 Feb 2010 21:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1813#comment-264</guid>
		<description>I don&#039;t know what causes your problem.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know what causes your problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export Data to Excel File by Srinivas</title>
		<link>http://mariusht.com/blog/2010/01/21/export-data-to-excel-file/comment-page-1/#comment-262</link>
		<dc:creator>Srinivas</dc:creator>
		<pubDate>Tue, 23 Feb 2010 17:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1813#comment-262</guid>
		<description>Hi Mariush,

I have un-installed and re-installed but not works for me.
I am giving complete exception. See if you can help me out.

[BlazeDS]Unknown AMF type &#039;17&#039;.
flex.messaging.io.UnknownTypeException: Unknown AMF type &#039;17&#039;.
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:219)
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)
	at flex.messaging.io.amf.Amf3Input.readScriptObject(Amf3Input.java:473)
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:153)
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)
	at flex.messaging.io.amf.Amf3Input.readArray(Amf3Input.java:371)
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:157)
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)
	at flex.messaging.io.amf.Amf3Input.readScriptObject(Amf3Input.java:473)
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:153)
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)
	at flex.messaging.io.amf.Amf0Input.readObjectValue(Amf0Input.java:135)
	at flex.messaging.io.amf.Amf0Input.readArrayValue(Amf0Input.java:326)
	at flex.messaging.io.amf.Amf0Input.readObjectValue(Amf0Input.java:139)
	at flex.messaging.io.amf.Amf0Input.readObject(Amf0Input.java:95)
	at flex.messaging.io.amf.AmfMessageDeserializer.readObject(AmfMessageDeserializer.java:226)
	at flex.messaging.io.amf.AmfMessageDeserializer.readBody(AmfMessageDeserializer.java:205)
	at flex.messaging.io.amf.AmfMessageDeserializer.readMessage(AmfMessageDeserializer.java:125)
	at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:114)
	at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:278)
	at flex.messaging.endpoints.AMFEndpoint$$EnhancerByCGLIB$$7e16147a.service()
	at org.springframework.flex.servlet.MessageBrokerHandlerAdapter.handle(MessageBrokerHandlerAdapter.java:101)
	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:807)
	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
	at java.lang.Thread.run(Thread.java:595)</description>
		<content:encoded><![CDATA[<p>Hi Mariush,</p>
<p>I have un-installed and re-installed but not works for me.<br />
I am giving complete exception. See if you can help me out.</p>
<p>[BlazeDS]Unknown AMF type &#8216;17&#8242;.<br />
flex.messaging.io.UnknownTypeException: Unknown AMF type &#8216;17&#8242;.<br />
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:219)<br />
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)<br />
	at flex.messaging.io.amf.Amf3Input.readScriptObject(Amf3Input.java:473)<br />
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:153)<br />
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)<br />
	at flex.messaging.io.amf.Amf3Input.readArray(Amf3Input.java:371)<br />
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:157)<br />
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)<br />
	at flex.messaging.io.amf.Amf3Input.readScriptObject(Amf3Input.java:473)<br />
	at flex.messaging.io.amf.Amf3Input.readObjectValue(Amf3Input.java:153)<br />
	at flex.messaging.io.amf.Amf3Input.readObject(Amf3Input.java:132)<br />
	at flex.messaging.io.amf.Amf0Input.readObjectValue(Amf0Input.java:135)<br />
	at flex.messaging.io.amf.Amf0Input.readArrayValue(Amf0Input.java:326)<br />
	at flex.messaging.io.amf.Amf0Input.readObjectValue(Amf0Input.java:139)<br />
	at flex.messaging.io.amf.Amf0Input.readObject(Amf0Input.java:95)<br />
	at flex.messaging.io.amf.AmfMessageDeserializer.readObject(AmfMessageDeserializer.java:226)<br />
	at flex.messaging.io.amf.AmfMessageDeserializer.readBody(AmfMessageDeserializer.java:205)<br />
	at flex.messaging.io.amf.AmfMessageDeserializer.readMessage(AmfMessageDeserializer.java:125)<br />
	at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:114)<br />
	at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:278)<br />
	at flex.messaging.endpoints.AMFEndpoint$$EnhancerByCGLIB$$7e16147a.service()<br />
	at org.springframework.flex.servlet.MessageBrokerHandlerAdapter.handle(MessageBrokerHandlerAdapter.java:101)<br />
	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)<br />
	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:807)<br />
	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)<br />
	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511)<br />
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)<br />
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)<br />
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)<br />
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)<br />
	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)<br />
	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)<br />
	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)<br />
	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)<br />
	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)<br />
	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)<br />
	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)<br />
	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)<br />
	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)<br />
	at java.lang.Thread.run(Thread.java:595)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export Data to Excel File by Mariush T.</title>
		<link>http://mariusht.com/blog/2010/01/21/export-data-to-excel-file/comment-page-1/#comment-261</link>
		<dc:creator>Mariush T.</dc:creator>
		<pubDate>Tue, 23 Feb 2010 12:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1813#comment-261</guid>
		<description>http://mariusht.com/blog/2009/04/15/missing-bitmapdata-class-in-code-completion-flexfp10/

Hope it helps</description>
		<content:encoded><![CDATA[<p><a href="http://mariusht.com/blog/2009/04/15/missing-bitmapdata-class-in-code-completion-flexfp10/" rel="nofollow">http://mariusht.com/blog/2009/04/15/missing-bitmapdata-class-in-code-completion-flexfp10/</a></p>
<p>Hope it helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export Data to Excel File by Srinivas</title>
		<link>http://mariusht.com/blog/2010/01/21/export-data-to-excel-file/comment-page-1/#comment-260</link>
		<dc:creator>Srinivas</dc:creator>
		<pubDate>Tue, 23 Feb 2010 11:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1813#comment-260</guid>
		<description>Hi Mariush T

Thanks for your response. I have done same provided in link. FileReference.save() is working fine and I could able to download excel file. But when I use Flash player 10 in my browsers, I could not able to see drag and drop features in my application which worked well in flash 9. It shows the following error:
[BlazeDS]Unknown AMF type &#039;17&#039;.

Do you know any solution for this kind of problem.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Mariush T</p>
<p>Thanks for your response. I have done same provided in link. FileReference.save() is working fine and I could able to download excel file. But when I use Flash player 10 in my browsers, I could not able to see drag and drop features in my application which worked well in flash 9. It shows the following error:<br />
[BlazeDS]Unknown AMF type &#8216;17&#8242;.</p>
<p>Do you know any solution for this kind of problem.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export Data to Excel File by Mariush T.</title>
		<link>http://mariusht.com/blog/2010/01/21/export-data-to-excel-file/comment-page-1/#comment-259</link>
		<dc:creator>Mariush T.</dc:creator>
		<pubDate>Mon, 22 Feb 2010 21:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://mariusht.com/blog/?p=1813#comment-259</guid>
		<description>FileReference.save() method is available only in Flash Player 10. You have to set Flex builder compiler settings to Flash Player 10. Follow this link http://blog.everythingflex.com/2008/05/20/using-flash-player-10-within-flex-builder/</description>
		<content:encoded><![CDATA[<p>FileReference.save() method is available only in Flash Player 10. You have to set Flex builder compiler settings to Flash Player 10. Follow this link <a href="http://blog.everythingflex.com/2008/05/20/using-flash-player-10-within-flex-builder/" rel="nofollow">http://blog.everythingflex.com/2008/05/20/using-flash-player-10-within-flex-builder/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
