On Dec 28, 2007 4:47 PM, Stephen More wrote: > I was able to build the MXML Hello World source using flex. After > working through Flex and maven integration issues I am now trying to > compile the ActionScript Hello World source in a separate .as file and > I am getting the following error: > > Error: Access of possibly undefined property hello through a reference > with static type hessian.client:HessianService. > [INFO] [Flex compiler] > [INFO] [Flex compiler] var token:AsyncToken = > service.hello.send( userName );
When compiling there are two modes, strict and standard. Strict mode is on by default and you need to use standard mode instead. The syntax is: -compiler.strict=false -Steve More _______________________________________________ hessian-interest mailing list [email protected] http://maillist.caucho.com/mailman/listinfo/hessian-interest
