CRM 2011 has some AppFabric integration, but from what I can see it can only post the execution context. What I want to do is invoke, from a sandbox plugin (i.e. CRM2011 online compatible), a WCF service that is accessed via Azure AppFabric. I am concerned
though that this is not possible due to the fact that the plugin is running in partial trust.
I have tested the plugin calling a hosted WCF service, and also an Azure host WCF service. The downside was the lack of security & authentication - partial trust does not allow the use of message based security, but since this traffic is going over the
cloud it needs to be secured! (Thanks Microsoft).
I am concerned that the restrictions on WCF imposed by partial trust will prevent the plugin connecting to the AppFabric WCF service. I see that the Microsoft supplied plugin runs in full trust!
My guess is that my plugin would have to program directly against the Microsoft.ServiceBus methods, create a channel to the target WCF service & then invoke the service methods.
Anyone done this?