如何实现对 Perl 的 https 支持 HTTP::DAV
How to implement https support for Perl's HTTP::DAV
我正在尝试通过 WebDav 协议访问远程服务器,更具体地说是 Perl 的 HTTP::DAV 模块。
根据其文档,耦合到远程目录的方式如下:
use HTTP::DAV;
$d = HTTP::DAV->new();
$url = "http://host.org:8080/dav/";
$d->credentials(
-user => "pcollins",
-pass => "mypass",
-url => $url,
-realm => "DAV Realm"
);
$d->open( -url => $url )
or die("Couldn't open $url: " .$d->message . "\n");
我创建了一个本地 webdav 目录并且可以通过 http protocol
.
完美访问它
根据 HTTP::DAV
的文档,应该有 https
支持以及使用 Crypt::SSLeay
模块。
Crypt::SSLeay
的文档为我们提供了以下在 LWP::UserAgent
模块中使用的概要,从而为我们提供了通过 https
协议访问 Web 资源的途径:
use Net::SSL;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new(
ssl_opts => { verify_hostname => 0 },
);
my $response = $ua->get('https://www.example.com/');
print $response->content, "\n";
我的问题是:
我如何组合 HTTP::DAV and Crypt::SSLeay
模块以便通过 WebDav and https
协议访问 Web 资源?
类似于以下内容:
use HTTP::DAV;
$d = HTTP::DAV->new();
$url = "https://host.org:8080/dav/";
#...
这是未经测试的,但从略读文档来看,这应该有效:
$d->get_user_agent->ssl_opts( verify_hostname => 0 );
HTTP::DAV 的文档说:
get_user_agent
Returns the clients' working HTTP::DAV::UserAgent object.
You may want to interact with the HTTP::DAV::UserAgent object to modify request headers or provide advanced authentication procedures.
HTTP::DAV::UserAgent 没有记录,但 its source code shows it's a subclass of LWP::UserAgent. The documentation for LWP::UserAgent 提到 ssl_opts
为用户代理对象设置 SSL 选项的方法。
我正在尝试通过 WebDav 协议访问远程服务器,更具体地说是 Perl 的 HTTP::DAV 模块。
根据其文档,耦合到远程目录的方式如下:
use HTTP::DAV;
$d = HTTP::DAV->new();
$url = "http://host.org:8080/dav/";
$d->credentials(
-user => "pcollins",
-pass => "mypass",
-url => $url,
-realm => "DAV Realm"
);
$d->open( -url => $url )
or die("Couldn't open $url: " .$d->message . "\n");
我创建了一个本地 webdav 目录并且可以通过 http protocol
.
根据 HTTP::DAV
的文档,应该有 https
支持以及使用 Crypt::SSLeay
模块。
Crypt::SSLeay
的文档为我们提供了以下在 LWP::UserAgent
模块中使用的概要,从而为我们提供了通过 https
协议访问 Web 资源的途径:
use Net::SSL;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new(
ssl_opts => { verify_hostname => 0 },
);
my $response = $ua->get('https://www.example.com/');
print $response->content, "\n";
我的问题是:
我如何组合 HTTP::DAV and Crypt::SSLeay
模块以便通过 WebDav and https
协议访问 Web 资源?
类似于以下内容:
use HTTP::DAV;
$d = HTTP::DAV->new();
$url = "https://host.org:8080/dav/";
#...
这是未经测试的,但从略读文档来看,这应该有效:
$d->get_user_agent->ssl_opts( verify_hostname => 0 );
HTTP::DAV 的文档说:
get_user_agent
Returns the clients' working HTTP::DAV::UserAgent object.
You may want to interact with the HTTP::DAV::UserAgent object to modify request headers or provide advanced authentication procedures.
HTTP::DAV::UserAgent 没有记录,但 its source code shows it's a subclass of LWP::UserAgent. The documentation for LWP::UserAgent 提到 ssl_opts
为用户代理对象设置 SSL 选项的方法。