我已經創建了smartliclient和webservices。 我已經創建了具有webservices +相關類和客戶端與桌面應用程序的服務器。 在smartclient項目中,名稱空間和類名與在servver-webservices中的相同。在客戶端 發行項目 -Smartclient類和webservice類之間的衝突
using SmartInstitute.Automation.SmartInstituteServices.CourseService; // webservice
CourseService service = new CourseService();
SmartInstitute.Course[] allCourses = service.GetAllCourses();
SmartInstitute.Course - 存在的SmartClient項目。 它顯示foll。錯誤 -
無法隱式轉換類型 'SmartInstitute.Automation.SmartInstituteServices.CourseService.Course []' 爲 'SmartInstitute.Course []'
請讓我知道,如果你想了解更多信息。 我指的是http://www.codeproject.com/Articles/11163/Developing-Next-Generation-Smart-Clients-using-NET
在此先感謝。
謝謝..讓我轉換asmx webservice到WCF應用程序。 – Abhi