Arjun, > > The problem that I am facing is first of all both the java code and > flex action script shares the same package hierarchy i.e. > com.iterationtwo.demo.* so I cannot copy both the java folder and > flex AS folder under the WEB-INF\flex\user_classes folder >
An assumption of the sample application is experience of having deployed a non-Flex application into an application server; we haven't provided documentation (yet) of how to deploy a Java application, as that is well documented elsewhere. Essentially, you will need to build the Java code in an IDE of your choice, which will create a package hierarchy that contains .class files in the leaf nodes. You'll then copy from the com/ directory into your WEB-INF/classes directory, which is where a Java application server would expect class files to be deployed. The service not found is because Flex is looking in WEB-INF/classes/com/iterationtwo/cant/remember/path/WhateverClass.class to find the class files, and they're not there. Hope this helps, Steven -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.7.0 - Release Date: 08/03/2005

