Hi,
I am using BlazeDS in my project to connect to a Tomcat server. I have configured my services in the services-config.xml file and passed the location of the file as an argument to the compiler in Flash Builder.
I have a few unit tests that make asynchronous server calls. When I run these tests from within Flash Builder, the tests run fine. But when I run the tests via the flexunit ant task, these tests alone time out while the other tests pass. Also, it does seem like the server is not contacted at all as my log messeges in my server side code are not visible.
I tried passing the path to the services-config.xml file and the context root of the application in the mxmlc ant task that compiles my TestRunner.mxml file:
<mxmlc file="${main.src.loc}/flexUnitTests/TestRunner.mxml" output="${bin.loc}/TestRunner.swf">
<library-path dir="${lib.loc}" append="true">
<include name="*.swc" />
</library-path>
<source-path path-element="${basedir}/src" />
<source-path path-element="${basedir}/locale/{locale}" />
<compiler.verbose-stacktraces>true</compiler.verbose-stacktraces>
<compiler.headless-server>true</compiler.headless-server>
<compiler.services>C:\myApp\Source\WebServer\WebContent\WEB-INF\flex\services-config.xml</ compiler.services>
<compiler.context-root>myApp</compiler.context-root>
</mxmlc>
No use. My tests still time out. Here is my flexUnit task:
<target name="test" depends="compile">
<!-- Execute FlexUnit tests and publish reports -->
<flexunit
swf="${bin.loc}/TestRunner.swf"
workingDir="${bin.loc}"
toDir="${report.loc}"
haltonfailure="false"
verbose="true"
localTrusted="true"
headless="${headless}">
<source dir="${basedir}/locale/{locale}" >
<include name="*.properties" />
</source>
<library dir="${lib.loc}" />
</flexunit>
I guess I am missing somthing - a way to tell ant about the location of my server or something like that. Please help!
Thanks in advance.
Manoj