Darrell, can you look at this? Thanks, -Alex ________________________________
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 02, 2007 11:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Framework Caching not working Hello, i having problems when i try use framework caching on moxie. I compile my project using this build.xml trouhg Apache Ant: <?xml version="1.0" encoding="UTF-8"?> <project name="PainelAdmApp" default="compile"> <property name="flex.mxmlc" location="C:\Program Files\Adobe\Flex Builder 3\sdks\moxie\bin\mxmlc.exe" /> <property name="flashplayer" location="C:\Program Files\Adobe\Flex Builder 3\Player\win\FlashPlayer.exe" /> <property name="deploy.dir" value="bin" /> <target name="compile"> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="PainelAdmApp.mxml -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -services services-config.xml -link-report=PainelAdmAppReport.xml -output ${deploy.dir}/PainelAdmApp.swf" /> </exec> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="SharedCode.as -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -link-report=SharedCode.xml -output ${deploy.dir}/SharedCode.swf" /> </exec> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="Admin.mxml -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -load-externs=PainelAdmAppReport.xml -load-externs=SharedCode.xml -output ${deploy.dir}/Admin.swf" /> </exec> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="Equipamentos.mxml -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -load-externs=PainelAdmAppReport.xml -load-externs=SharedCode.xml -output ${deploy.dir}/Equipamentos.swf" /> </exec> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="Servicos.mxml -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -load-externs=PainelAdmAppReport.xml -load-externs=SharedCode.xml -output ${deploy.dir}/Servicos.swf" /> </exec> <exec executable="${flex.mxmlc}" dir="." failonerror="false" failifexecutionfails="no"> <arg line="Mineradoras.mxml -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.172357.swf -load-externs=PainelAdmAppReport.xml -load-externs=SharedCode.xml -output ${deploy.dir}/Mineradoras.swf" /> </exec> </target> </project> All my modules using RSL and main app to. Everything is compiled ok, and framework to... but framework not caching. After i load the application first time and enter again, ok, cache is ok, but when i clear the cache of my browser all framework is loaded again. Anyone know how it is possible? Thanks.