일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c#
- 오라클
- 마이크로소프트
- attr()
- windows
- jQuery
- javascript
- 이클립스
- 비주얼스튜디오
- 윈폼
- MS
- SSRS
- 엑셀
- 리포팅서비스
- ASP
- 단축키
- oracle
- microsoft
- MSSQL
- 프로시저
- aspnet
- DataGrid
- IIS
- CONVERT()
- Winform
- replace()
- 자바스크립트
- 태그를 입력해 주세요.
- Excel
- 윈도우
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[ASP] ASP를 이용한 웹서비스 호출 본문
닷넷에서 웹서비스를 작성해서 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)
%>
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)
%>
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP] An error occurred on the server when processing the URL (0) | 2016.01.11 |
---|---|
[ASP] ASP에서 웹서비스_웹메소드 호출2 (0) | 2016.01.08 |
[ASP] Active Server Pages(ASP) - Request 속성 (0) | 2016.01.08 |
[ASP] Active Server Pages (ASP) - 데이터 중복 체크방법 (0) | 2016.01.08 |
[ASP] Window Vista(영문판) 에서 ASP 개발시 웹브라우저에서 오류메시지 보이지 않을때 IIS설정하는 방법 (0) | 2016.01.08 |