Mike
I have the same issue too with an ODATA source - is there any way to find out what is happening ?
Turning on plugin tracing makes no difference- and I have fallen at the end of a long development journey.
We have the ODATA endpoint but it is not connecting - my guess it is to do with $skip as that seems not to be working too well on our endpoint.
Any light you could shed would be great..
Thank you..
<edmx:Edmx xmlns:edmx="docs.oasis-open.org/.../edmx" Version="4.0">
<edmx:DataServices>
<Schema xmlns="docs.oasis-open.org/.../edm" Namespace="CallDetailsDB">
<EntityType Name="CallDetail">
<Key>
<PropertyRef Name="cdrguid"/>
</Key>
<Property Name="cdrguid" Type="Edm.Guid" Nullable="false"/>
<Property Name="cdate" Type="Edm.String"/>
<Property Name="ctime" Type="Edm.String"/>
<Property Name="canumber" Type="Edm.String"/>
<Property Name="cbnumber" Type="Edm.String"/>
<Property Name="ctype" Type="Edm.String"/>
<Property Name="crate" Type="Edm.String"/>
<Property Name="cstatus" Type="Edm.String"/>
<Property Name="nduration" Type="Edm.Decimal"/>
<Property Name="nprice" Type="Edm.Decimal"/>
<Property Name="cisocurrency" Type="Edm.String"/>
<Property Name="ctag" Type="Edm.String"/>
<Property Name="cband" Type="Edm.String"/>
<Property Name="caccount" Type="Edm.String"/>
<Property Name="cbilled" Type="Edm.String"/>
<Property Name="billid" Type="Edm.Int32"/>
<Property Name="ctext" Type="Edm.String"/>
<Property Name="suspenseid" Type="Edm.Int32"/>
<Property Name="siteid" Type="Edm.Int32" Nullable="false"/>
</EntityType>
<EntityContainer Name="CallDetailsContainer">
<EntitySet Name="CallDetails" EntityType="CallDetailsDB.CallDetail"/>
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>