Hello,
Full compilation of application (AX2012R2) fails and throws an error:
System.MissingMethodException: Attempted to access a missing method.
at Microsoft.Dynamics.Ax.WCFDynamicProxy.DynamicObject.CallMethod(String method, Type[] types, Object[] parameters, Type& returnType)
at makeRemoteCall(DynamicProxy proxy, String methodName, Type[] types, Object[] objects, interpret* ip, Object& ret, Type& type)
at MakeXppStatelessCall(interpret* ip, cqlClass* cinfo, Byte mode, Char* src, Char* externalName)
What could cause the problem and how I could solve it?
*This post is locked for comments
I have the same question (0)A system System.MissingMethodException means that you are attempting to dynamically call a method that doesn't exist. Have you tried seeing what method was called, and if it existed, or if it exists, if it is visible to the caller? Making sure the method exists and has compiled prior to full compilation should solve your problem.