Glassfish4的控制台使用https
进行访问,我如何使用http
代替https
?
我可以在'sec-admin-listener'
中找到config/domain.xml
选项,它使用ssl
方法。
我尝试更改此选项,但失败了。 现在我访问管理控制台是
https://ip:4848/
我想用:
http://ip:4848/
答案 0 :(得分:0)
转到管理控制台并执行以下命令:
<input style="margin-left: 12px" type=button value="Zeile hinzufügen" onclick="add(this)" />
function add(e) {
counter++;
var element = document.getElementById("Attibutes");
var content = "";
content += '<input type="text" onchange="showTable()" name="AttributeName' + counter + '" id="AttributeName' + counter + '" value="">';
content += '<input style="margin-left: 6px" type="text" onchange="showTable()" name="AttributeLine' + counter + '"id="AttributeLine' + counter + '" value="">';
content += '<input style="margin-left: 6px" type=button onchange="showTable()" name="AttributeName' + counter + '"id="ButtonDelete' + counter + '" value="Zeile löschen" onclick="removeLine(' + counter + ')">';
content += '<br id="br' + counter + '">';
element.innerHTML += content;
e.preventDefault()
}
不要忘记重启服务器以使更改生效。