‘b’ is null or not an object

This is a reminder to my self that this blog post has the solutoin to the “b” error when working with the Client Object Model. Basically I need to change this:

createDelegate(this, this.onSuccessMethod)

to this:

createDelegate(this, onSuccessMethod)

,

Comments are closed.