webservice系列教学(3)

本文介绍如何使用多种.NET及非.NET语言如VB.NET、VB6.0、VBS、VC调用WebService,提供了详细的步骤与代码示例。
4.7使用vb.net调用
无需下载任何组件
新建项目Visual Basic项目windows应用程序
在解决方案资源管理器中添加web引用,输入wsdl文件所在地址。
将web引用改名为yundan.
yundan.(service_name)即可引用
*需引用System.web.services*
例程:
  1. Public Class Form1   
  2.         Inherits System.Windows.Forms.Form   
  3. #Region " Windows 窗体设计器生成的代码 "   
  4.     Public Sub New()   
  5.         MyBase.New()   
  6.         InitializeComponent()   
  7.     End Sub   
  8.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)   
  9.         If disposing Then   
  10.             If Not (components Is Nothing) Then   
  11.                 components.Dispose()   
  12.             End If   
  13.         End If   
  14.         MyBase.Dispose(disposing)   
  15.     End Sub   
  16.     Private components As System.ComponentModel.IContainer   
  17.     Friend WithEvents Label1 As System.Windows.Forms.Label   
  18.     Friend WithEvents TextBox1 As System.Windows.Forms.TextBox   
  19.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()   
  20.         Me.Label1 = New System.Windows.Forms.Label()   
  21.         Me.TextBox1 = New System.Windows.Forms.TextBox()   
  22.         Me.SuspendLayout()   
  23.         Me.Label1.AutoSize = True  
  24.         Me.Label1.Location = New System.Drawing.Point(96, 40)   
  25.         Me.Label1.Name = "Label1"  
  26.         Me.Label1.Size = New System.Drawing.Size(91, 14)   
  27.         Me.Label1.TabIndex = 0  
  28.         Me.Label1.Text = "Webservice演示"  
  29.         Me.TextBox1.Location = New System.Drawing.Point(88, 144)   
  30.         Me.TextBox1.Name = "TextBox1"  
  31.         Me.TextBox1.TabIndex = 1   
  32.         Me.TextBox1.Text = "TextBox1"  
  33.         Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)   
  34.         Me.ClientSize = New System.Drawing.Size(292, 273)   
  35.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.TextBox1, Me.Label1})   
  36.         Me.Name = "Form1"  
  37.         Me.Text = "VB.net webserive演示"  
  38.         Me.ResumeLayout(False)   
  39.     End Sub   
  40. #End Region   
  41.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load   
  42.         Dim cc As yundan.Service1 = New yundan.Service1()   
  43.         TextBox1.Text = cc.test(12, 123)   
  44.     End Sub   
  45. End Class   
4.8使用vb6.0调用
需下载msSoapToolkit20.exe
添加引用:Microsoft Soap Type Library
位置:”C:\Program Files\Common Files\MSSoap\Binaries\ MSSOAP1.dll”
    调用方法:
    Dim cc As New MSSOAPLib.SoapClient
    例程:
    新建工程标准EXE添加3个textbox控件,text1,text2,text3添加一个button控件Command1
    代码如下:
  1. Option Explicit   
  2. Dim cc As New MSSOAPLib.SoapClient   
  3. Private Sub Command1_Click()   
  4. cc.mssoapinit "http://192.168.0.4/yundan/Service1.asmx?WSDL"   
  5. Me.Text3.Text = cc.test(CInt(Text1.Text), CInt(Text2.Text))   
  6. End Sub  
4.9使用vbscript调用
需下载msSoapToolkit20.exe
引用:MSSOAP.SoapClient
    例程:
  1. Option Explicit   
  2. Const WSDL_URL = "http://192.168.0.4/yundan/service1.wsdl"  
  3. WScript.echo "Connecting: " & WSDL_URL   
  4. Dim Calc   
  5. Set Calc = CreateObject("MSSOAP.SoapClient")   
  6. Calc.mssoapinit WSDL_URL   
  7. Dim Answer   
  8. Answer = Calc.test(14,28)   
  9. WScript.Echo "14+28=" & Answer  
将其存成domo.vbs文件,直接双击运行。
4.10使用vc调用
需下载mssoaptoolkit20.exe
    引用
#import "msxml3.dll"
using namespace msxml2;

#import "c:\program files\common files\mssoap\binaries\mssoap1.dll" exclude("istream", "isequentialstream", "_large_integer", "_ularge_integer", "tagstatstg", "_filetime") raw_interfaces_only
using namespace mssoaplib;
例程:
新建工程àmfc appwizard(exe)[ mclient]àstep1à基本对话à其他默认值即可
修改源文件:
  1. < stdafx.h>  
  2. // stdafx.h : include file for standard system include files,   
  3. //  or project specific include files that are used frequently, but   
  4. //      are changed infrequently   
  5. //   
  6.   
  7. #if !defined(afx_stdafx_h__045cd307_9518_4af1_8ce3_8ffe38d1acb2__included_)   
  8. #define afx_stdafx_h__045cd307_9518_4af1_8ce3_8ffe38d1acb2__included_   
  9.   
  10. #if _msc_ver > 1000   
  11. #pragma once   
  12. #endif // _msc_ver > 1000   
  13.   
  14. #define vc_extralean        // exclude rarely-used stuff from windows headers   
  15.   
  16. #include <afxwin.h>         // mfc core and standard components   
  17. #include <afxext.h>         // mfc extensions   
  18. #include <afxdisp.h>        // mfc automation classes   
  19. #include <afxdtctl.h>       // mfc support for internet explorer 4 common controls   
  20. #ifndef _afx_no_afxcmn_support   
  21. #include <afxcmn.h>         // mfc support for windows common controls   
  22. #endif // _afx_no_afxcmn_support   
  23.   
  24.   
  25.   
  26. #import "msxml3.dll"    
  27. using namespace msxml2;   
  28.   
  29. #import "c:\program files\common files\mssoap\binaries\mssoap1.dll" exclude("istream", "isequentialstream", "_large_integer", "_ularge_integer", "tagstatstg", "_filetime") raw_interfaces_only   
  30. using namespace mssoaplib;   
  31.   
  32.   
  33. #define msg(message) \   
  34. { \   
  35.     ::messagebox(null,_t(message),null,mb_ok | mb_iconexclamation| mb_applmodal);\   
  36.     goto cleanup; \   
  37. }   
  38.   
  39.   
  40. #define check_hresult(hr, message) \   
  41. if (failed(hr)) \   
  42. { \   
  43.     msg(message); \   
  44. }    
  45.   
  46.   
  47. //{{afx_insert_location}}   
  48. // microsoft visual c++ will insert additional declarations immediately before the previous line.   
  49.   
  50. #endif // !defined(afx_stdafx_h__045cd307_9518_4af1_8ce3_8ffe38d1acb2__included_)   
  51. <mclient.h>  
  52. // mclient.h : main header file for the mclient application   
  53. //   
  54.   
  55. #if !defined(afx_mclient_h__9a397da6_5a62_4aef_be5e_6c7629322ecc__included_)   
  56. #define afx_mclient_h__9a397da6_5a62_4aef_be5e_6c7629322ecc__included_   
  57.   
  58. #if _msc_ver > 1000   
  59. #pragma once   
  60. #endif // _msc_ver > 1000   
  61.   
  62. #ifndef __afxwin_h__   
  63.     #error include 'stdafx.h' before including this file for pch   
  64. #endif   
  65.   
  66. #include "resource.h"       // main symbols   
  67.   
  68. /////////////////////////////////////////////////////////////////////////////   
  69. // cmclientapp:   
  70. // see mclient.cpp for the implementation of this class   
  71. //   
  72.   
  73. class cmclientapp : public cwinapp   
  74. {   
  75. public:   
  76.     cmclientapp();   
  77.   
  78. // overrides   
  79.     // classwizard generated virtual function overrides   
  80.     //{{afx_virtual(cmclientapp)   
  81.     public:   
  82.     virtual bool initinstance();   
  83.     //}}afx_virtual   
  84.   
  85. // implementation   
  86.   
  87.     //{{afx_msg(cmclientapp)   
  88.         // note - the classwizard will add and remove member functions here.   
  89.         //    do not edit what you see in these blocks of generated code !   
  90.     //}}afx_msg   
  91.     declare_message_map()   
  92. };   
  93.   
  94.   
  95. /////////////////////////////////////////////////////////////////////////////   
  96.   
  97. //{{afx_insert_location}}   
  98. // microsoft visual c++ will insert additional declarations immediately before the previous line.   
  99.   
  100. #endif // !defined(afx_mclient_h__9a397da6_5a62_4aef_be5e_6c7629322ecc__included_)   
基于数据驱动的 Koopman 算子的递归神经网络模型线性化,用于纳米定位系统的预测控制研究(Matlab代码实现)内容概要:本文围绕“基于数据驱动的Koopman算子的递归神经网络模型线性化”展开,旨在研究纳米定位系统的预测控制问题,并提供完整的Matlab代码实现。文章结合数据驱动方法与Koopman算子理论,利用递归神经网络(RNN)对非线性系统进行建模与线性化处理,从而提升纳米级定位系统的精度与动态响应性能。该方法通过提取系统隐含动态特征,构建近似线性模型,便于后续模型预测控制(MPC)的设计与优化,适用于高精度自动化控制场景。文中还展示了相关实验验证与仿真结果,证明了该方法的有效性和先进性。; 适合人群:具备一定控制理论基础和Matlab编程能力,从事精密控制、智能制造、自动化或相关领域研究的研究生、科研人员及工程技术人员。; 使用场景及目标:①应用于纳米级精密定位系统(如原子力显微镜、半导体制造设备)中的高性能控制设计;②为非线性系统建模与线性化提供一种结合深度学习与现代控制理论的新思路;③帮助读者掌握Koopman算子、RNN建模与模型预测控制的综合应用。; 阅读建议:建议读者结合提供的Matlab代码逐段理解算法实现流程,重点关注数据预处理、RNN结构设计、Koopman观测矩阵构建及MPC控制器集成等关键环节,并可通过更换实际系统数据进行迁移验证,深化对方法泛化能力的理解。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值