Rank: Newbie Coder Groups: Member
Joined: 7/19/2011 Posts: 12 Points: 33 Location: UK
|
Installed V5 on Win7 x64, and everything is going well developing a Flex client against .Net server code.
I am trying, on a single NetConnection, to:
1) Make a remote method call using NetConnection.call() 2) Change a SO value from inside that remote method
as follows:
public string DoRemoteCommand(RemoteCommand com) { _aSharedObject.setAttribute("lastCommand", com); return com.Handler + "|" + com.FunctionName+ "|" + com.InParams; }
The result is that the call fails. If I comment out the first line of the function code, the call works as expected.
Is this a threading issue?
|