How to call a web service wrriten in java from flex.
My webservice returns Java Object do i have to use FDS.
As far as i know i dont have to use FDS for RPC and Web services they r needed
for Remote Object.
Following is my Web Method Class.
@WebMethod(operationName = "getModel")
public Model getModel()
{
model = new com.softpak.bussiness.Model();
model.setID("23929");
model.setName("Large Cap");
return model;
}
My question is how can i catch this Model Object in my Flex Application....
Thanks In Advance