您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)怎么在C#項(xiàng)目中調(diào)用webservice接口,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
C#調(diào)用webservice接口
我們在日常開發(fā)中,經(jīng)常遇到C#調(diào)用webservice的情況,通常來說如果webservice是用vs+c#來開發(fā)的,問題一般來說不大,直接web引用,然后調(diào)用就OK了。
流程如下:
下面就是進(jìn)行調(diào)用,就這么簡單。
但如果webservice是用JAVA或者其它語言或者其它工具生成的話,使用vs+c#來調(diào)用就經(jīng)常遇到問題;就是使用上面的方法顯得很不好使,經(jīng)常是使用SOAP UI調(diào)用沒有問題,但使用上面的方法卻調(diào)用報錯,經(jīng)常是500的錯誤。當(dāng)你聯(lián)系webservice提供商時通常會說SOAP UI都能調(diào)用得到,你們用代碼為啥子調(diào)用不到,問題出在你們的調(diào)用方法上。
在我們向其它公司提供webservice的時候,經(jīng)常也會出現(xiàn)這樣的問題,以前我們一直都以為SOAP UI能夠調(diào)用,那么代碼也就一定能夠調(diào)用得通,但經(jīng)過實(shí)踐,我們自己寫DEMO調(diào)用自己的webservice時才發(fā)現(xiàn),并不是別人的調(diào)用代碼寫的有問題,因?yàn)槲覀冏约阂矡o法將自己寫的webservice調(diào)用得通,或者說沒有找到正確的方法調(diào)用得通。
這時我們就要思考是否是SOAP UI能夠調(diào)用得通的webservice就代碼一定調(diào)用沒有問題呢?或者說SOAP UI調(diào)用webservice和代碼調(diào)用webservice的原理區(qū)別到底在哪里呢?
總結(jié)一下:
(1)SOAP UI能夠調(diào)用成功,代碼不一定能夠調(diào)用成功,代碼調(diào)用成功并且得到返回結(jié)果的前提是webservice可以按標(biāo)準(zhǔn)返回結(jié)果,但SOAP UI是只要按信封返回就可以收到結(jié)果而不管結(jié)果是否標(biāo)準(zhǔn);
(2)如果webservice的header有用戶名和密碼的校驗(yàn),使用SOAP UI可以調(diào)用成功并且得到返回結(jié)果,但使用上面web引用的方式卻不行。對于這種情況,有以下方法可以調(diào)用成功:
重復(fù)上面web引用的方式,另外引用Microsoft.Web.Services3(這個DLL可以在這里下載)。
手工修改Reference.cs
以下是調(diào)用方法,重點(diǎn)在傳入用戶名和密碼,修改繼承類的重點(diǎn)也在于此;
引用完成,調(diào)用就會成功了,結(jié)果如下:
從上面可以看出web引用真的是簡單粗暴,基本不用寫幾句代碼就可以搞定絕大部分的webservice調(diào)用。
但是web引用卻有在現(xiàn)實(shí)開發(fā)中常遇到的缺點(diǎn):
(1)需要開發(fā)環(huán)境可以訪問到的wsdl地址;
(2)如果webservice有變化需要更新web引用;
那有沒有其它方法呢?答案是有的。一種是直接封裝信封,使用WebRequest,代碼如下:
private void button2_Click(object sender, EventArgs e) { StringBuilder soap = new StringBuilder(); soap.Append("<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:zls=\"www.zlsoft.cn\">"); soap.Append("<soap:Header>"); soap.Append("<wsse:Security soap:mustUnderstand=\"true\" xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\" xmlns:wsu=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd\">"); soap.Append("<wsse:UsernameToken wsu:Id=\"UsernameToken-4\">"); soap.Append("<wsse:Username>hjq</wsse:Username>");//用戶名 soap.Append("<wsse:Password Type=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText\">123</wsse:Password>");//口令 soap.Append("<wsse:Nonce EncodingType=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary\">gC6dDGKjxo0IaRc5KpQU3w==</wsse:Nonce>"); soap.Append("<wsu:Created>2017-11-01T05:11:22.805Z</wsu:Created>"); soap.Append("</wsse:UsernameToken>"); soap.Append("</wsse:Security>"); soap.Append("</soap:Header>"); soap.Append("<soap:Body>"); soap.Append("<zls:getUserInfo>"); soap.Append("<zls:appsys_id>trwetre</zls:appsys_id>"); soap.Append("<zls:appsys_token>sdafdsf</zls:appsys_token>"); soap.Append("<zls:sid>fdsafds</zls:sid>"); soap.Append("</zls:getUserInfo>"); soap.Append("</soap:Body>"); soap.Append("</soap:Envelope>"); string url = "http://127.0.0.1:6998/services/HIPService?wsdl"; var result = GetSOAPReSource(url, soap.ToString()); } public static string GetSOAPReSource(string url, string datastr) { try { //request Uri uri = new Uri(url); WebRequest webRequest = WebRequest.Create(uri); webRequest.ContentType = "application/soap+xml; charset=utf-8"; webRequest.Method = "POST"; using (Stream requestStream = webRequest.GetRequestStream()) { byte[] paramBytes = Encoding.UTF8.GetBytes(datastr.ToString()); requestStream.Write(paramBytes, 0, paramBytes.Length); } //response WebResponse webResponse = webRequest.GetResponse(); using (StreamReader myStreamReader = new StreamReader(webResponse.GetResponseStream(), Encoding.UTF8)) { string result = ""; return result = myStreamReader.ReadToEnd(); } } catch (Exception ex) { throw ex; } }
但是上述方式還是存在問題,如果webservice需要校驗(yàn)header里面的用戶名與密碼時,雖然信封中封裝了用戶名和密碼,但是一樣調(diào)用不成功,同樣的信封內(nèi)容,使用SOAP UI卻能成功。可見代碼調(diào)用和SOAP UI調(diào)用還是有一定區(qū)別的。
另外一種方式是使用動態(tài)編譯:
Uri uri = new Uri(txt_url.Text); WebRequest webRequest = WebRequest.Create(uri); webRequest.Credentials = new NetworkCredential("hjq", "123"); System.IO.Stream requestStream = webRequest.GetResponse().GetResponseStream(); // Get a WSDL file describing a service ServiceDescription sd = ServiceDescription.Read(requestStream); string sdName = sd.Services[0].Name; // Add in tree view // Initialize a service description servImport ServiceDescriptionImporter servImport = new ServiceDescriptionImporter(); servImport.AddServiceDescription(sd, String.Empty, String.Empty); servImport.ProtocolName = "Soap"; servImport.CodeGenerationOptions = CodeGenerationOptions.GenerateProperties; CodeNamespace nameSpace = new CodeNamespace(); CodeCompileUnit codeCompileUnit = new CodeCompileUnit(); codeCompileUnit.Namespaces.Add(nameSpace); // Set Warnings ServiceDescriptionImportWarnings warnings = servImport.Import(nameSpace, codeCompileUnit); if (warnings == 0) { StringWriter stringWriter = new StringWriter(System.Globalization.CultureInfo.CurrentCulture); Microsoft.CSharp.CSharpCodeProvider prov = new Microsoft.CSharp.CSharpCodeProvider(); prov.GenerateCodeFromNamespace(nameSpace, stringWriter, new CodeGeneratorOptions()); // Compile the assembly with the appropriate references //string[] assemblyReferences = new string[2] { "System.Web.Services.dll", "System.Xml.dll" }; string[] assemblyReferences = new string[3] {"System.dll", "System.dll", "System.dll" }; CompilerParameters param = new CompilerParameters(assemblyReferences); param.GenerateExecutable = false; param.GenerateInMemory = true; param.TreatWarningsAsErrors = false; param.WarningLevel = 4; CompilerResults results = new CompilerResults(new TempFileCollection()); results = prov.CompileAssemblyFromDom(param, codeCompileUnit); Assembly assembly = results.CompiledAssembly; Type service = assembly.GetType(sdName); MethodInfo[] methodInfo = service.GetMethods(); foreach (MethodInfo t in methodInfo) { if (t.Name == "Discover") break; if (t.Name == cbMethods.Text) { //MessageBox.Show(t.ToString()); //Invoke Method Object obj = Activator.CreateInstance(service); Object response = t.Invoke(obj, new object[] { "1","2","3"}); MessageBox.Show("Result = " + response.ToString()); break; } } } } catch (Exception ex) { MessageBox.Show(ex.Message); }
以上就是怎么在C#項(xiàng)目中調(diào)用webservice接口,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。