DJ메탈짱™의 Free Style

[ASP] ASP를 이용한 웹서비스 호출 본문

일(job)/MS(Microsoft)

[ASP] ASP를 이용한 웹서비스 호출

뽀&쏭 2016. 1. 8. 17:50



닷넷에서 웹서비스를 작성해서 ASP/JSP 에서의 호출예제를 만들어 보았습니다. 아래소스는 ASP에서 Microsoft Soap Toolkit 3.0 을 이용하여 호출하는 예제입니다. 

<% 
Const WSDL_URL = "http://localhost/passport.asmx?WSDL" 

Dim oSoapClient 
Dim userID 
Dim password 
Dim newPassword 
Dim returnVal 

userID = Request("userID") 
password = Request("password") 
newPassword = Request("newPassword") 

Set oSoapClient = Server.CreateObject("MSSOAP.SoapClient30") 
oSoapClient.ClientProperty("ServerHTTPRequest") = True 
oSoapClient.mssoapinit WSDL_URL 

returnVal = oSoapClient.SetPasswordChange(userID, password, newPassword) 
%>

 

출처 - http://fivewind.egloos.com/835863