[JBoss JIRA] (WFLY-7480) Description of Elytron final-name-rewriter resource
by Martin Choma (JIRA)
[ https://issues.jboss.org/browse/WFLY-7480?page=com.atlassian.jira.plugin.... ]
Martin Choma moved JBEAP-6895 to WFLY-7480:
-------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-7480 (was: JBEAP-6895)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Security
(was: Security)
(was: User Experience)
Affects Version/s: 11.0.0.Alpha1
(was: 7.1.0.DR7)
> Description of Elytron final-name-rewriter resource
> ---------------------------------------------------
>
> Key: WFLY-7480
> URL: https://issues.jboss.org/browse/WFLY-7480
> Project: WildFly
> Issue Type: Bug
> Components: Security
> Affects Versions: 11.0.0.Alpha1
> Reporter: Martin Choma
> Labels: user_experience
>
> Describe in model / add operation / XSD purpose of this attribute. It is not obvious from name neither from description "The final name rewriter"
> What does this rewriter rewrites?
> As a reference, it can be configured in conjuction with {{pre-realm-mapper}} and {{post-realm-mapper}}, in those two cases I can understand from name and description what is it for.
> This JIRA applies to all occurences of {{final-name-rewriter}} in model:
> * 2x in {{http-authentication-factory}}
> * 2x in {{sasl-authentication-factory}}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (DROOLS-1354) Drools PermGen OOM When create kiebulider several times
by Shukang Guo (JIRA)
Shukang Guo created DROOLS-1354:
-----------------------------------
Summary: Drools PermGen OOM When create kiebulider several times
Key: DROOLS-1354
URL: https://issues.jboss.org/browse/DROOLS-1354
Project: Drools
Issue Type: Bug
Components: core engine
Affects Versions: 6.4.0.Final
Environment: Windows7 Tomcat7 JDK1.7
Reporter: Shukang Guo
Assignee: Mario Fusco
When i need updating the rule , first i will delete it from kieFileSystem , then add it .Second i will create a new KieBuilder and buildAll().But after several time i have done , it would be gone by PermGen OOM.
{code:java}
@Autowired
private RuleService ruleService;
private KieServices ks = KieServices.Factory.get();
private KieFileSystem kFileSystem = ks.newKieFileSystem();
private KieContainer kContainer;
private KieBase kieBase;
private KieBuilder kbuilder;
private String defaultPath;
/*
* (non-Javadoc)
*
* @see com.huawei.datalifecycle.rules.RunRuless#init(java.lang.String[])
*/
@Override
@PostConstruct
public void init() {
List<Rule> rules = new ArrayList<>();
rules.add(ruleService.selectById(15));
// List<Rule> rules = ruleService.selectAll(0, 0);
String[] paths = new String[rules.size()];
for (int i = 0; i < paths.length; i++) {
paths[i] = rules.get(i).getPath();
}
init(paths);
}
public void init(String[] paths) {
boolean isSetDefaultPath = false;
for (String path : paths) {
if (isSetDefaultPath)
kFileSystem
.write(ks.getResources().newClassPathResource(path));
else {
Resource resource = ks.getResources().newClassPathResource(
path);
kFileSystem.write(resource);
defaultPath = resource.getResourceType().getDefaultPath() + "/";
isSetDefaultPath = true;
}
}
kbuilder = ks.newKieBuilder(kFileSystem);
kbuilder.buildAll();
kContainer = ks.newKieContainer(ks.getRepository()
.getDefaultReleaseId());
kieBase = kContainer.getKieBase();
}
/*
* (non-Javadoc)
*
* @see com.huawei.datalifecycle.rules.RunRuless#refresh(java.lang.String)
*/
public void refresh() {
kbuilder = ks.newKieBuilder(kFileSystem);
kbuilder.buildAll();
kContainer.updateToVersion(ks.getRepository().getDefaultReleaseId());
}
/*
* (non-Javadoc)
*
* @see com.huawei.datalifecycle.rules.RunRuless#getKieSession()
*/
@Override
public KieSession getKieSession() {
return kieBase.newKieSession();
}
@Override
public void add(String path) {
kFileSystem.write(ks.getResources().newClassPathResource(path));
refresh();
}
@Override
public void delete(String path) {
kFileSystem.delete(defaultPath + path);
refresh();
}
@Override
public void update(String path) {
kFileSystem.delete(defaultPath + path);
kFileSystem.write(ks.getResources().newClassPathResource(path));
refresh();
}
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7478) Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7478?page=com.atlassian.jira.plugin.... ]
Hynek Švábek updated WFLY-7478:
-------------------------------
Component/s: Security
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> ----------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7478
> URL: https://issues.jboss.org/browse/WFLY-7478
> Project: WildFly
> Issue Type: Bug
> Components: Security
> Reporter: Hynek Švábek
> Assignee: Darran Lofthouse
>
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> When I define Credential
> Store for non-existent JCEKS file
> {code}
> /subsystem=elytron/credential-store=cs_not_found_exception:add(uri="cr-store://test/cs/keystore-non-existent.jceks?store.password=pass123")
> {code}
> then I got very ugly failure description
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_not_found_exception" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_not_found_exception: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks' for the store named 'cs_not_found_exception'
> Caused by: java.io.FileNotFoundException: /home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks (No such file or directory)"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_not_found_exception"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Credential store file XYZ doesn't exist.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7479) Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7479?page=com.atlassian.jira.plugin.... ]
Hynek Švábek updated WFLY-7479:
-------------------------------
Component/s: Security
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> -------------------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7479
> URL: https://issues.jboss.org/browse/WFLY-7479
> Project: WildFly
> Issue Type: Bug
> Components: Security
> Reporter: Hynek Švábek
> Assignee: Darran Lofthouse
>
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> *How to reproduce*
> Prepare credential store file (the easiest way is create credential store from scratch)
> /subsystem=elytron/credential-store=cs_pass123:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;create.storage=true")
> /subsystem=elytron/credential-store=cs_pass123/alias=dbPass:add(secret-value=passwordToDB)
> Then I try to create Credential store with wrong key password to existing store file.
> /subsystem=elytron/credential-store=cs_wrong_key_pass:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;key.password=pass456")
> *I can see this result:*
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_wrong_key_pass" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_wrong_key_pass: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/ks-pass123.jceks' for the store named 'cs_wrong_key_pass'
> Caused by: java.security.UnrecoverableKeyException: Given final block not properly padded"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_wrong_key_pass"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Password for credential store key is incorrect."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7479) Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7479?page=com.atlassian.jira.plugin.... ]
Hynek Švábek reassigned WFLY-7479:
----------------------------------
Assignee: Darran Lofthouse (was: Peter Skopek)
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> -------------------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7479
> URL: https://issues.jboss.org/browse/WFLY-7479
> Project: WildFly
> Issue Type: Bug
> Reporter: Hynek Švábek
> Assignee: Darran Lofthouse
>
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> *How to reproduce*
> Prepare credential store file (the easiest way is create credential store from scratch)
> /subsystem=elytron/credential-store=cs_pass123:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;create.storage=true")
> /subsystem=elytron/credential-store=cs_pass123/alias=dbPass:add(secret-value=passwordToDB)
> Then I try to create Credential store with wrong key password to existing store file.
> /subsystem=elytron/credential-store=cs_wrong_key_pass:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;key.password=pass456")
> *I can see this result:*
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_wrong_key_pass" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_wrong_key_pass: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/ks-pass123.jceks' for the store named 'cs_wrong_key_pass'
> Caused by: java.security.UnrecoverableKeyException: Given final block not properly padded"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_wrong_key_pass"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Password for credential store key is incorrect."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7479) Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7479?page=com.atlassian.jira.plugin.... ]
Hynek Švábek moved ELY-721 to WFLY-7479:
----------------------------------------
Project: WildFly (was: WildFly Elytron)
Key: WFLY-7479 (was: ELY-721)
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> -------------------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7479
> URL: https://issues.jboss.org/browse/WFLY-7479
> Project: WildFly
> Issue Type: Bug
> Reporter: Hynek Švábek
> Assignee: Peter Skopek
>
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> *How to reproduce*
> Prepare credential store file (the easiest way is create credential store from scratch)
> /subsystem=elytron/credential-store=cs_pass123:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;create.storage=true")
> /subsystem=elytron/credential-store=cs_pass123/alias=dbPass:add(secret-value=passwordToDB)
> Then I try to create Credential store with wrong key password to existing store file.
> /subsystem=elytron/credential-store=cs_wrong_key_pass:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;key.password=pass456")
> *I can see this result:*
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_wrong_key_pass" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_wrong_key_pass: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/ks-pass123.jceks' for the store named 'cs_wrong_key_pass'
> Caused by: java.security.UnrecoverableKeyException: Given final block not properly padded"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_wrong_key_pass"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Password for credential store key is incorrect."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7478) Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7478?page=com.atlassian.jira.plugin.... ]
Hynek Švábek reassigned WFLY-7478:
----------------------------------
Assignee: Darran Lofthouse (was: Peter Skopek)
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> ----------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7478
> URL: https://issues.jboss.org/browse/WFLY-7478
> Project: WildFly
> Issue Type: Bug
> Reporter: Hynek Švábek
> Assignee: Darran Lofthouse
>
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> When I define Credential
> Store for non-existent JCEKS file
> {code}
> /subsystem=elytron/credential-store=cs_not_found_exception:add(uri="cr-store://test/cs/keystore-non-existent.jceks?store.password=pass123")
> {code}
> then I got very ugly failure description
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_not_found_exception" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_not_found_exception: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks' for the store named 'cs_not_found_exception'
> Caused by: java.io.FileNotFoundException: /home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks (No such file or directory)"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_not_found_exception"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Credential store file XYZ doesn't exist.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (WFLY-7478) Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/WFLY-7478?page=com.atlassian.jira.plugin.... ]
Hynek Švábek moved ELY-720 to WFLY-7478:
----------------------------------------
Project: WildFly (was: WildFly Elytron)
Key: WFLY-7478 (was: ELY-720)
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> ----------------------------------------------------------------------------------------------------------
>
> Key: WFLY-7478
> URL: https://issues.jboss.org/browse/WFLY-7478
> Project: WildFly
> Issue Type: Bug
> Reporter: Hynek Švábek
> Assignee: Peter Skopek
>
> Definition Credential Store with non-existent storage file causes ugly failure-description with Exception.
> When I define Credential
> Store for non-existent JCEKS file
> {code}
> /subsystem=elytron/credential-store=cs_not_found_exception:add(uri="cr-store://test/cs/keystore-non-existent.jceks?store.password=pass123")
> {code}
> then I got very ugly failure description
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_not_found_exception" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_not_found_exception: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks' for the store named 'cs_not_found_exception'
> Caused by: java.io.FileNotFoundException: /home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/keystore-not_exists.jceks (No such file or directory)"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_not_found_exception"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Credential store file XYZ doesn't exist.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (ELY-721) Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
by Hynek Švábek (JIRA)
Hynek Švábek created ELY-721:
--------------------------------
Summary: Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
Key: ELY-721
URL: https://issues.jboss.org/browse/ELY-721
Project: WildFly Elytron
Issue Type: Bug
Reporter: Hynek Švábek
Assignee: Darran Lofthouse
Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
*How to reproduce*
Prepare credential store file (the easiest way is create credential store from scratch)
/subsystem=elytron/credential-store=cs_pass123:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;create.storage=true")
/subsystem=elytron/credential-store=cs_pass123/alias=dbPass:add(secret-value=passwordToDB)
Then I try to create Credential store with wrong key password to existing store file.
/subsystem=elytron/credential-store=cs_wrong_key_pass:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;key.password=pass456")
*I can see this result:*
{code}
{
"outcome" => "failed",
"failure-description" => {
"WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_wrong_key_pass" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_wrong_key_pass: WFLYELY00004: Unable to start the service.
Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/ks-pass123.jceks' for the store named 'cs_wrong_key_pass'
Caused by: java.security.UnrecoverableKeyException: Given final block not properly padded"},
"WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_wrong_key_pass"],
"WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
},
"rolled-back" => true
}
{code}
*Suggestion for solution*
failure-description must not contain Exception or snippet stacktrace.
Description like that "Password for credential store key is incorrect."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months
[JBoss JIRA] (ELY-721) Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
by Hynek Švábek (JIRA)
[ https://issues.jboss.org/browse/ELY-721?page=com.atlassian.jira.plugin.sy... ]
Hynek Švábek reassigned ELY-721:
--------------------------------
Assignee: Peter Skopek (was: Darran Lofthouse)
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> -------------------------------------------------------------------------------------------------------------------
>
> Key: ELY-721
> URL: https://issues.jboss.org/browse/ELY-721
> Project: WildFly Elytron
> Issue Type: Bug
> Reporter: Hynek Švábek
> Assignee: Peter Skopek
>
> Definition Credential Store with existing storage file but with wrong key password causes ugly failure-description.
> *How to reproduce*
> Prepare credential store file (the easiest way is create credential store from scratch)
> /subsystem=elytron/credential-store=cs_pass123:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;create.storage=true")
> /subsystem=elytron/credential-store=cs_pass123/alias=dbPass:add(secret-value=passwordToDB)
> Then I try to create Credential store with wrong key password to existing store file.
> /subsystem=elytron/credential-store=cs_wrong_key_pass:add(uri="cr-store://test/cs/ks-pass123.jceks?store.password=pass123;key.password=pass456")
> *I can see this result:*
> {code}
> {
> "outcome" => "failed",
> "failure-description" => {
> "WFLYCTL0080: Failed services" => {"org.wildfly.security.credential-store-client.cs_wrong_key_pass" => "org.jboss.msc.service.StartException in service org.wildfly.security.credential-store-client.cs_wrong_key_pass: WFLYELY00004: Unable to start the service.
> Caused by: org.wildfly.security.credential.store.CredentialStoreException: ELY09506: Cannot read credential storage file '/home/hsvabek/securityworkspace/VERIFICATION/2016_11_02_UX_testing/jboss-eap-7.1.0.DR7/standalone/data/cs/ks-pass123.jceks' for the store named 'cs_wrong_key_pass'
> Caused by: java.security.UnrecoverableKeyException: Given final block not properly padded"},
> "WFLYCTL0412: Required services that are not installed:" => ["org.wildfly.security.credential-store-client.cs_wrong_key_pass"],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
> },
> "rolled-back" => true
> }
> {code}
> *Suggestion for solution*
> failure-description must not contain Exception or snippet stacktrace.
> Description like that "Password for credential store key is incorrect."
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 8 months