我已经完成了Eclipse Neon的全新安装,然后安装了subclipse,(成功)从SVN导入了一个项目,然后安装了Aptana插件(纯粹是为了集成sftp支持).(这些都是最新版本).当我尝试打开一个html文件时,它无法打开,我得到空白标签,文件名通常会在eclipse中出现.我已经多次卸载并重新安装,效果相同.似乎没有更新或任何解决此问题的方法.我得到各种错误,从空指针异常到Wordwrap错误.我已经使用错误报告功能将此错误报告给eclipse.这可以在这里查看:https://dev.eclipse.org/recommenders/community/aeri/v2/# !/ submissions/ gKGfmAiOTc7a1rLDYWpaRfpy7wE4EKDs1Co4OlqRpg7vpHKlOmVsD1YdyjNNbKVO.有没有人对此有任何线索?
我正在尝试编写一个将使用自定义属性的XACML策略.我想的是:
<?xml version="1.0" encoding="UTF-8"?>
<Policy xmlns="urn:oasis:names:tc:xacml:1.0:policy"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" PolicyId="deny-demo100"
RuleCombiningAlgId="urn:oasis:names:tc:xacml:1.0:rule-combining-algorithm:first-applicable">
<Description> </Description>
<Target>
<Subjects>
<AnySubject/>
</Subjects>
<Resources>
<AnyResource/>
</Resources>
<Actions>
<AnyAction/>
</Actions>
</Target>
<Rule Effect="Deny" RuleId="rule-deny-demo100">
<Target>
<Subjects>
<AnySubject/>
</Subjects>
<Resources>
<Resource>
<AnyResource/>
</Resource>
</Resources>
<Actions>
<Action>
<ActionMatch MatchId="urn:oasis:names:tc:xacml:1.0:function:string-equal">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">customAttribute</AttributeValue>
<ActionAttributeDesignator AttributeId="urn:oasis:names:tc:xacml:1.0:action:action- id" MustBePresent="false" DataType="http://www.w3.org/2001/XMLSchema#string"/>
</ActionMatch>
</Action>
</Actions>
</Target>
</Rule>
<Rule RuleId="deny-demo100-catch-all" Effect="Permit" />
</Policy>
Run Code Online (Sandbox Code Playgroud)
(我们正在使用Fedora的XACML实现).
我确信我在这里遗漏了一些非常简单和基本的东西,但是无法弄清楚是什么.有人能指出我正确的方向吗?