Visual Studioに、SOAPAPIを呼び出すためのさまざまな「メソッド」をロードするWSDLWebリファレンスを追加しました。空白のaspxページがあります。Web参照によってロードされたこれらのメソッドを呼び出すにはどうすればよいですか?私はWebリファレンスをmywsdlと呼んでいます。
これまでの私のコードは次のとおりです。
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1.aspx.vb" Inherits="WebApplication1.WebForm1" %>
<%@ Import Namespace="WebApplication1" %>
<%
End Sub
Private Sub Call_Web_Service_Method()
Dim output
Dim CallWebService As New ServerName.mywsdl()
Dim sGetValue As String = CallWebService.GetSomeValue()
output = sGetValue
End Sub
%>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<%=output%>
</div>
</form>
</body>
</html>