RemoteObject Error
I'm using Flex Enterprise Services 2.0.
I keep get "Type loginPrototype.Login not found." Is it due to the directory stucture or?
My class files are in WEB-INF\classes\flex\loginPrototype\Login
Anything that I missed out?
flex-config.xml - Nothing changed
mxml
<mx:RemoteObject id="login" destination="loginDest" result="txtResult.text=String(event.result)"
fault="mx.controls.Alert.show(event.fault.faultstr ing,'Error Irene')">
<mx:method name="sayHello"/>
</mx:RemoteObject>
flex-remoting-service.xml
<destination id="loginDest">
<properties>
<source>loginPrototype.Login</source>
</properties>
</destination>
|