vb.net 類庫中如何使用webservice
環境:windows8+vs2010+vb.net+winform
類庫中引用 webservice 服務後,直接呼叫時會碰到如下的錯誤:
在 ServiceModel 客戶端配置部分中,找不到引用協定“WebServiceForSanYou.TosServiceSoap”的預設終結點元素。這可能是因為未找到應用程式的配置檔案,或者是因為
解決方案:
1)在類庫裡引用服務時,會產生 app.config 檔案
2)將上述檔案中如下部分複製到 主程式的 app.config 中。(注意 endpoint 節只保留一個)
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="TosServiceSoap" />
</basicHttpBinding>
<customBinding>
<binding name="TosServiceSoap12">
<textMessageEncoding messageVersion="Soap12" />
<httpTransport />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://tos.tytus.com.cn:23458/webService/tosservice.asmx"
binding="basicHttpBinding" bindingConfiguration="TosServiceSoap"
contract="WebServiceForSanYou.TosServiceSoap" name="TosServiceSoap" />
<!--<endpoint address="http://tos.tytus.com.cn:23458/webService/tosservice.asmx"
binding="customBinding" bindingConfiguration="TosServiceSoap12"
contract="WebServiceForSanYou.TosServiceSoap" name="TosServiceSoap12" />-->
</client>
</system.serviceModel>
相關文章
- WebService的概念和基本使用Web
- WebService共享資料的使用Web
- 十九、.net core使用SoapCore開發webservice介面,以及使用HttpClientFactory動態訪問webservice介面WebHTTPclient
- VB.net chart 控制元件使用控制元件
- Python中如何使用構造方法定義類Python構造方法
- XGBoost類庫使用小結
- python 類如何使用Python
- Java庫中的LocalDate類JavaLDA
- .NET Standard 類庫的使用技巧
- Angular2如何使用第三方類庫(如:jQuery)AngularjQuery
- Django資料庫類庫MySQLdb使用詳解Django資料庫MySql
- 在SSIS中自定義VB.Net指令碼(下)OF指令碼
- webservice介面呼叫Web
- SpringBoot+webserviceSpring BootWeb
- 細說WebServiceWeb
- webservice簡介Web
- WebService XML SoapFormatterWebXMLORM
- java中Scanner類使用Java
- 如何使用grequests庫
- 如何使用Guzzle庫
- 如何使用htmltab庫HTML
- 如何使用 RestSharp 庫REST
- WebBits庫如何使用Web
- 如何使用RCurl庫
- 好程式設計師分享WebService的簡單使用程式設計師Web
- 使用RestCloud ETL輕鬆解決WebService資料同步RESTCloudWeb
- 什麼是webserviceWeb
- Oracle資料庫中convert()函式,在瀚高資料庫中如何替換使用?Oracle資料庫函式
- MySQL資料庫中timediff()函式,在瀚高資料庫中如何替換使用?MySql資料庫函式
- vb.net使用GDI+實現掃雷小遊戲遊戲
- Java中的Reference類使用Java
- 如何使用Mechanize::PhantomJS庫JS
- Python curses庫如何使用Python
- 如何在Nuxt3.0中使用MongoDB資料庫UXMongoDB資料庫
- 在 Linux中如何使用動態連結模組庫?Linux
- Python pyinstaller類庫使用學習總結Python
- Python pycryptodome類庫使用學習總結Python
- Python pymodbus類庫使用學習總結Python
- SpringBoot中@DataJpaTest 和 JUnit 中的儲存庫類Spring Boot