這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)Services如何在Web項(xiàng)目中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括蚌山網(wǎng)站建設(shè)、蚌山網(wǎng)站制作、蚌山網(wǎng)頁制作以及蚌山網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,蚌山網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到蚌山省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!在Web Services方法中,往往使用的都是一個(gè)具體類型的參數(shù),這個(gè)參數(shù)一般就是一個(gè)數(shù)據(jù)對(duì)象。ASP.NET Web Services通過聲明XmlIncludeAttribute可以實(shí)現(xiàn)Web Services方法中運(yùn)用多態(tài)。
XmlIncludeAttribute允許XmlSerializer在序列化火反序列化對(duì)象時(shí)識(shí)別類型。當(dāng)應(yīng)用XmlIncludeAttribute時(shí),需指定派生類的Type。XmlSerializer序列化同時(shí)包含基類和派生類的對(duì)象之后,它就可以識(shí)別兩種對(duì)象類型。
首先定義基類Vehicle和派生類Car:
public abstract class Vehicle { public string LicenseNumber{get;set;} public DateTime MakeTime { get; set; } } public class Car : Vehicle { public int DoorNum { get; set; } }
定義AddVehicle的Web Method,聲明XmlInclude需要添加對(duì)命名空間System.Xml.Serialization的引用:
[WebMethod] [XmlInclude(typeof(Car))] public void AddVehicle(Vehicle vehicle) { }
查看生成的wsdl,wsdl利用extension的base屬性來描述Car繼承Vechicle。
查看引用Web Services生成的Reference.cs文件,Vehicle類會(huì)有XmlIncludeAttribute的聲明:
[System.Xml.Serialization.XmlIncludeAttribute(typeof(Car))] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public abstract partial class Vehicle : object
客戶端測(cè)試代碼:
static void Main(string[] args) { localhost.WebService1SoapClient c = new localhost.WebService1SoapClient(); localhost.Car car = new localhost.Car() { LicenseNumber="0001", MakeTime=DateTime.Now, DoorNum=2 c.AddVehicle(car); }
在Web Services的AddVehicle方法可以查看傳過來的參數(shù):
Web Services可以支持多態(tài),不過僅僅限制在可以直接引用Web Services的時(shí)候有生成可序列化的代碼時(shí)能夠使用,要在其他的客戶端使用還是得費(fèi)一番周折。
上述就是小編為大家分享的Services如何在Web項(xiàng)目中使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
當(dāng)前標(biāo)題:Services如何在Web項(xiàng)目中使用-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://muchs.cn/article10/ceejgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、全網(wǎng)營銷推廣、動(dòng)態(tài)網(wǎng)站、網(wǎng)站營銷、ChatGPT、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容