I have a REST service on our local network that I need to call from within a plugin in CRM 2011 Online. Some methods on the REST service require serialized objects to be sent in the request body, and other methods return a serialized object in the response body. The only way I know how to do that is with streams to write data to the request and read data from the response. Is it true that the System.IO namespace (and possibly others) is not available to reference from within a plugin registered in CRM 2011 Online? If that is the case, how can I call a REST service with data on the request and read data from the response?
↧