Hi All,I am doing a sample program in Flex using Remote Object, wheni
enter Data in TextInput and click getData(button) in the TextAreaconrol
the the Data in TextInput should be displayed along withthat some
updation, these updations are declaredin the Java. when i click on the
Button(getData) it willupdate the Data using the RemoteObject. Here is
my Application..Also described the desired path in
RemoteConfig.xmlText.mxml
import flash.net.navigateToURL; import
mx.rpc.events.ResultEvent; import mx.controls.Alert; import
mx.rpc.events.ResultEvent; import mx.rpc.events.FaultEvent; public
function getMessage():void { Alert.show("alertin echo"+ input.text);
srv.echoMessage(input.text); } public function
display(event:ResultEvent):void { Alert.show("In display Response");
output.text = event.result(); } private function
faultHandler(event:FaultEvent):void { Alert.show("Server Message:
Error"+event.message); }
Here is My Java
Application EchoService.java:import java.text.D...