1
votes

I want to call a function at c# side from flex side. But I got an error as below.

CallBack method="handleFaultReturn" arguments="[RPC Fault faultString="Could not find a suitable method with name SampleFunction" faultCode="Server.Processing" faultDetail="null"]"

Any idea? Thanks in Advance

1
can you post the error message??Ami
<CallBack method="handleFaultReturn" arguments="[RPC Fault faultString="Could not find a suitable method with name SampleFuntion" faultCode="Server.Processing" faultDetail="null"]"/>Vishnu Vikraman
there may be type miss match argument types(sending and recieving)...Santhosh Nayak
Thanks for the reply. I got it. It was due to the access modifier of the function at ASP .net. Previously it was private. I changed it to public.Vishnu Vikraman

1 Answers

1
votes

Thanks for the reply. I got it. It was due to the access modifier of the function at ASP .net. Previously it was private. I changed it to public.