I use WCF Service . When transmitting large numbers of data ,it points out so error.
In internet, There are lots of people asking for help to this issue.
I should how to solve that,please ?
3 Answers, 1 is accepted
Can you please explain, in what way is that question related to Telerik products?
All the best,Ross
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
BaseOpteClass baseOptClass = new BaseOpteClass();
ObservableCollection<PublicCatalogInfo> CatalogInfoReport = new ObservableCollection<PublicCatalogInfo>();
CatalogInfoReport = baseOptClass.GetRadGridViewDataSelected<PublicCatalogInfo>(this.gvReportSelectAll);
ObservableCollection<PublicCatalogInfo> CatalogInfoEmployee = new ObservableCollection<PublicCatalogInfo>();
CatalogInfoEmployee = baseOptClass.GetRadGridViewData<PublicCatalogInfo>(this.gvEmployeeSelectAll);
string strCreateDateTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
WcfService wcf = new WcfService();
BiWCFBusiServiceClient biWCFBusiServiceClient = wcf.GetWCF();
biWCFBusiServiceClient.ReportAndEmployeeSaveCompleted += new EventHandler<ReportAndEmployeeSaveCompletedEventArgs>(biWCFBusiServiceClient_ReportAndEmployeeSaveCompleted);
biWCFBusiServiceClient.ReportAndEmployeeSaveAsync(CatalogInfoReport, CatalogInfoEmployee, "1", "10", strOperatorID, strCreateDateTime);
When ReportAndEmployeeSave include CatalogInfoReport and CatalogInfoEmployee parameters takeing larges number of data is invoked , the program prints out hint :The remote server returns error: NotFound.
I am sure that you are aware of this, but WCF Data Services is a technology that is developed by Microsoft.
All the best,
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>