CRM 2011 SDK come with a sample code explaining how to develop plugins and listener on Azure AppFabric.
I have tried to to implement a twoWayListener on Crm Online 2011 platform but I can't go too far. I get this error when triggering my SeviceEndpoint listener step "No service is hosted at the specified address."
Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: No service is hosted at the specified address.Detail:
<OrganizationServiceFault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/xrm/2011/Contracts">
<ErrorCode>-2147204747</ErrorCode>
<ErrorDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic" />
<Message>No service is hosted at the specified address.</Message>
<Timestamp>2012-10-04T16:01:27.5512735Z</Timestamp>
<InnerFault>
<ErrorCode>-2147220970</ErrorCode>
<ErrorDetails xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic" />
<Message>No service is hosted at the specified address.</Message>
<Timestamp>2012-10-04T16:01:27.5512735Z</Timestamp>
<InnerFault i:nil="true" />
<TraceText i:nil="true" />
</InnerFault>
<TraceText>[Microsoft.Crm.ServiceBus: Microsoft.Crm.ServiceBus.ServiceBusPlugin]
[*************************: twoWayListener: Create of email]
</TraceText>
</OrganizationServiceFault>
Anyone faced this ?
Fab