Calling external web services from AX

While calling external web service from AX you might experience following error:

Object 'CLRObject' could not be created

This is because web services must be called from code running on server. That why you need to set the class’s RunOn property to Server or to call the web service from a method marked as server static.

Martin F