Search code examples
apache-flexblazedspojo

Sample Flex with Pojo on Server


I just started a new project and my boss wants us to change IDE from NetBeans to Eclipse, RichFaces to Flex. I have never worked with Eclipse and Flex before. Today I tried to make hello word with it on Eclipse but had no luck. Can some one post or give me link to Flex->BlazeDS->Pojo on Eclipse for Beginner (Dummy) :D Thanks

Update: Forgot to mention that I'm using glassfish but I don't think it will make any problems


Solution

  • This seems like a pretty good tutorial: Set up blazeds on tomcat with eclipse for FLEX. Heres the POJO they use:

    package test;
    
    public class tester {
    public String getData() {
    return "hi";
    }
    }