我在IIS中托管了WCF服务。
当我选择此服务所在的应用程序时,我可以将其浏览为http
和https
(在功能视图中):
但是当我在内容视图
中选择特定服务时唯一可用的选项是浏览:
此浏览默认为http
。
有没有办法将其设置为使用https
?每次在浏览器中手动更改它都很烦人。
IIS版本为8.0
操作系统为Windows Server 2012 R2 Standard
。
答案 0 :(得分:0)
现在我找到了答案。
Bindings 用于控制此“浏览”按钮的行为。
我的解决方案是编辑网站绑定,以便function age_of_user() {
let age_entered = prompt("Enter Your Age:");
while (typeof age_entered !== "number" || age_entered < 0) {
alert("You entered an incorrect value. Please enter correct age.");
age_entered = prompt("Enter Your Age:");
}
return age_entered;
}
function confirm_age() {
let age = age_of_user();
if (age < 18) {
alert("Sorry! You need to be an adult to view content.");
}
else {
alert("Welcome to our site.");
}
}
confirm_age();
位于顶部:
同样也可以在applicationHost文件中编辑。