(Classic ASP) HTTP Basic Authentication Test
Demonstrates how to do HTTP basic authentication using Chilkat.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = Server.CreateObject("Chilkat.Http")
http.BasicAuth = 1
http.Login = "foo"
http.Password = "bar"
' Let's say we want to download a file that is protected by HTTP Basic Authenication..
success = http.Download("https://www.example.com/someDir/document.pdf","qa_output/document.pdf")
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
Response.End
End If
Response.Write "<pre>" & Server.HTMLEncode( "Success.") & "</pre>"
%>
</body>
</html>
|