這可能很容易,但我在這裏要做的是,我試圖將客戶對象傳遞給Web服務方法。 Customer類位於Entity名稱空間中,並且它是可序列化的,我將添加對ASP.NET應用程序的引用,該應用程序調用Web服務並傳遞Entity.Customer對象,並且還在接受Enity.Customer對象的WebService中傳遞。在ASP.NET Web服務上傳遞實體
Web服務方法
[WebMethod]
public void AddCustomer(Entity.Customer c)
{}
ASP.NET的applcation
Entity.Customer c = new Entity.Customer;
webservice.AddCustomer(c);
錯誤
爲「TestApplication.localhost.Service1.AddCustomer的最佳重載的方法匹配(TestApplication.localhost.Customer )'有一些無效參數
I tri編輯將Web服務更改爲接受Object並稍後將該對象投射到Customer.Entity,應用程序編譯但我收到了XML生成錯誤。
你可以按F12去定義生成的AddCustomer方法並在這裏粘貼聲明嗎? – popester 2009-10-24 19:19:18