I am consuming a web service through the debug mode in VS2013 in my project, if 14 records are there but not coming,
But when consuming via WCF Test Client, records are coming ,
please anybody can suggest me what would be the case in here ?, configurations and service url are same,
web configuration
<endpoint address="http:/localhost:8080/SCP/Apis/Admin/Services/UserService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IUserService" contract= "AdminUserService.IUserService" name="BasicHttpBinding_IUserService" />
and I call to service client like this.
var dto = new UserServiceClient().GetActiveUsers().ToList();