<?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: Flex BlazeDS Java JDBC MySql 快速配置</title>
	<atom:link href="http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/feed/" rel="self" type="application/rss+xml" />
	<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/</link>
	<description>ActionScript Flex Java JEE PHP...</description>
	<lastBuildDate>Wed, 04 Apr 2012 05:41:51 +0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Mohab</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-7078</link>
		<dc:creator>Mohab</dc:creator>
		<pubDate>Sat, 11 Feb 2012 18:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-7078</guid>
		<description>aladrey and I don&#8217;t think that is because my experience has not been valuable enough. I truly believe that mostly of this experience shared here is fair, deep and has a global impact. The only thing I would add to the technical list but that actually it&#8217;s more like an alternative solution, rather than a new idea , would be the Swiz framework as another main stream IOC/DI framework to build enterprise applications such as Parsley. It is quite lightweight framework, very robust, easy to setup, easy to use and the best thing in my opinion, it doesn&#8217;t impose any development structure or design pattern to get started. I have never used Parsley before, but according to people I have been talking and from what I have read, it is quite similar to Swiz in terms of features and functionalities.</description>
		<content:encoded><![CDATA[<p>aladrey and I don&#8217;t think that is because my experience has not been valuable enough. I truly believe that mostly of this experience shared here is fair, deep and has a global impact. The only thing I would add to the technical list but that actually it&#8217;s more like an alternative solution, rather than a new idea , would be the Swiz framework as another main stream IOC/DI framework to build enterprise applications such as Parsley. It is quite lightweight framework, very robust, easy to setup, easy to use and the best thing in my opinion, it doesn&#8217;t impose any development structure or design pattern to get started. I have never used Parsley before, but according to people I have been talking and from what I have read, it is quite similar to Swiz in terms of features and functionalities.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emeraldfish</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-1376</link>
		<dc:creator>emeraldfish</dc:creator>
		<pubDate>Thu, 10 Dec 2009 03:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-1376</guid>
		<description>public var empList:ArrayCollection;
  public var employeeRO:RemoteObject;
 //取得人员列表信息；
       public function useRemoteObject():void {
                employeeRO = new RemoteObject();
                employeeRO.destination = &quot;loadEmployees&quot;;
                employeeRO.addEventListener(&quot;result&quot;, getListResultHandler);
                employeeRO.addEventListener(&quot;fault&quot;, faultHandler);
                employeeRO.LoadEmployee();
            }

	    public function getListResultHandler(event:ResultEvent):void {
	         // Do something
	        empList=event.result as ArrayCollection;
	        Alert.show(empList.length.toString());
	    }
	
	    public function faultHandler (event:FaultEvent):void {
	     // Deal with event.fault.faultString, etc.
	        Alert.show(event.fault.faultString, &#039;Error&#039;);
	    }	

我直接这么做的。</description>
		<content:encoded><![CDATA[<p>public var empList:ArrayCollection;<br />
  public var employeeRO:RemoteObject;<br />
 //取得人员列表信息；<br />
       public function useRemoteObject():void {<br />
                employeeRO = new RemoteObject();<br />
                employeeRO.destination = &#8220;loadEmployees&#8221;;<br />
                employeeRO.addEventListener(&#8220;result&#8221;, getListResultHandler);<br />
                employeeRO.addEventListener(&#8220;fault&#8221;, faultHandler);<br />
                employeeRO.LoadEmployee();<br />
            }</p>
<p>	    public function getListResultHandler(event:ResultEvent):void {<br />
	         // Do something<br />
	        empList=event.result as ArrayCollection;<br />
	        Alert.show(empList.length.toString());<br />
	    }</p>
<p>	    public function faultHandler (event:FaultEvent):void {<br />
	     // Deal with event.fault.faultString, etc.<br />
	        Alert.show(event.fault.faultString, &#8216;Error&#8217;);<br />
	    }	</p>
<p>我直接这么做的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emeraldfish</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-1375</link>
		<dc:creator>emeraldfish</dc:creator>
		<pubDate>Thu, 10 Dec 2009 03:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-1375</guid>
		<description>搞定了，但是不是用你的这种方法，有空了把你的源码给我参考参考，看看哪种方法好！</description>
		<content:encoded><![CDATA[<p>搞定了，但是不是用你的这种方法，有空了把你的源码给我参考参考，看看哪种方法好！</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emeraldfish</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-1367</link>
		<dc:creator>emeraldfish</dc:creator>
		<pubDate>Wed, 09 Dec 2009 09:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-1367</guid>
		<description>at.addResponder(this);	//为本实例增加responder

Severity and Description	Path	Resource	Location	Creation Time	Id
1067: com.esri.solutions.flexviewer:loadEmployeeInfo 类型值的隐式强制指令的目标是非相关类型 mx.rpc:IResponder。	

别的都好了，就在这句话报这个错。楼主能帮我解决一下这个问题吗？是什么引起的？</description>
		<content:encoded><![CDATA[<p>at.addResponder(this);	//为本实例增加responder</p>
<p>Severity and Description	Path	Resource	Location	Creation Time	Id<br />
1067: com.esri.solutions.flexviewer:loadEmployeeInfo 类型值的隐式强制指令的目标是非相关类型 mx.rpc:IResponder。	</p>
<p>别的都好了，就在这句话报这个错。楼主能帮我解决一下这个问题吗？是什么引起的？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emeraldfish</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-1356</link>
		<dc:creator>emeraldfish</dc:creator>
		<pubDate>Wed, 09 Dec 2009 01:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-1356</guid>
		<description>Appcontext  是怎么来的？我就是没看明白，可能把这个实例的源码给我参考一下，谢谢！</description>
		<content:encoded><![CDATA[<p>Appcontext  是怎么来的？我就是没看明白，可能把这个实例的源码给我参考一下，谢谢！</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 道瓜</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-463</link>
		<dc:creator>道瓜</dc:creator>
		<pubDate>Fri, 08 May 2009 06:50:33 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-463</guid>
		<description>支持哥哥</description>
		<content:encoded><![CDATA[<p>支持哥哥</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 老李</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-402</link>
		<dc:creator>老李</dc:creator>
		<pubDate>Tue, 10 Mar 2009 15:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-402</guid>
		<description>Flex端需要实现 IExternalizable接口, 并实现writeExternal, readExternal方法
Java端实现Externalizable接口, 实现readExternal,writeExternal方法.
注意, 两端read与write必须配对, 如:
Java Write -&gt; 向Flex端方法送: 
		@Override
	public void writeExternal(ObjectOutput out) throws IOException {
		out.writeInt(id);
		out.writeUTF(name);
	}
	
Flex端read -&gt;接收

	public function readExternal(input:IDataInput):void {
		_id = input.readInt();
		_name = input.readUTF();
	}</description>
		<content:encoded><![CDATA[<p>Flex端需要实现 IExternalizable接口, 并实现writeExternal, readExternal方法<br />
Java端实现Externalizable接口, 实现readExternal,writeExternal方法.<br />
注意, 两端read与write必须配对, 如:<br />
Java Write -> 向Flex端方法送:<br />
		@Override<br />
	public void writeExternal(ObjectOutput out) throws IOException {<br />
		out.writeInt(id);<br />
		out.writeUTF(name);<br />
	}</p>
<p>Flex端read ->接收</p>
<p>	public function readExternal(input:IDataInput):void {<br />
		_id = input.readInt();<br />
		_name = input.readUTF();<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lazarus</title>
		<link>http://liguoliang.com/2009/flex-blazeds-java-jdbc-mysql-%e9%80%9f%e9%85%8d%e5%bf%ab%e9%80%9f%e9%85%8d%e7%bd%ae/comment-page-1/#comment-396</link>
		<dc:creator>lazarus</dc:creator>
		<pubDate>Sat, 07 Mar 2009 09:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://liguoliang.com/2009/02/793/#comment-396</guid>
		<description>为什么我ListFriend.dataProvider=evt.result as ArrayCollection;
的时候写进ListFriend的时候是[object,Object]
请回复到我的邮件好吗?</description>
		<content:encoded><![CDATA[<p>为什么我ListFriend.dataProvider=evt.result as ArrayCollection;<br />
的时候写进ListFriend的时候是[object,Object]<br />
请回复到我的邮件好吗?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

