User1082734430 posted
Hi,
There is unique issue what i am facing..
I have a wcf service - "KCo.Services.ReportRunner"
which has been used by my multiple client projects (UI Layers) using service references ("KCo.BeneficiaryReports.FootnoteManagement") and ("KCo.BeneficiaryReports.ReportRunner")
My service uses multiple DAL layers ("KCo.Data.FootnoteManagement") and ("KCo.Data.ReportRunner") for each UI layers respectively through service, and each DAL layer have separate DataContracts in it and which are not same.
So it means my
"KCo.BeneficiaryReports.FootnoteManagement" UI layer -> WCF Service ("KCo.Services.ReportRunner") -> DAL ("KCo.Data.FootnoteManagement") ----> This s Working
"KCo.BeneficiaryReports.ReportRunner" UI layer -> WCF Service ("KCo.Services.ReportRunner") -> DAL ("KCo.Data.ReportRunner") ----> This s not Working and here
"KCo.BeneficiaryReports.ReportRunner" service reference does not have datacontract classes which are in DAL ("KCo.Data.ReportRunner").
Can anybody tell me what could be the issue ???