在<script>
//insert the following code to your popup function
//get the values from the form
var coverPic = $('#cover_pic').val();
var articleTitle = $('#article-title').val();
var articleBody = $('article-body').val();
//insert the values to your <p>'s
$('#coverPic').text(coverPic);
$('#articleTitle').text(articleTitle);
$('#articleBody').text(articleBody);
</script>
<!-- supposed to be your modal body -->
<div>
<p id='coverPic'></p>
<p id='articleTitle'></p>
<p id='articleBody'></p>
</div>
中,我为LDAP身份验证和授权定义了standalone.xml
。此安全领域使用security-realm
中定义的连接。
我还使用命名子系统来定义outbound-connections
,我在Java类中使用它来在LDAP中进行一些更改。
问题是:在定义外部上下文时,我可以以某种方式重用出站连接吗?我不想再次提供LDAP配置属性。或者也许还有其他解决方案 - 在external-context
中的一个位置定义LDAP连接并将其重用于安全领域和命名子系统?
另外一个问题:如果我想从JNDI迁移到LDAP库(如UnboundID),我还可以重用standalone.xml
中的此连接吗?
答案 0 :(得分:0)
配置的管理部分中定义的出站连接不能专门供LDAP支持的安全领域使用。我将它们拆分的原因是多个域定义可以共享相同的连接,但它们在服务器的其他地方不可用。