[JBoss JIRA] (DROOLS-2690) Create an Scenario asset
by Toni Rikkola (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2690?page=com.atlassian.jira.plugi... ]
Toni Rikkola updated DROOLS-2690:
---------------------------------
Description:
The User wants to create the scenario simulation asset in the workbench.
Copy an new asset handler on the client side.
was:Copying an new asset handler on the client side.
> Create an Scenario asset
> ------------------------
>
> Key: DROOLS-2690
> URL: https://issues.jboss.org/browse/DROOLS-2690
> Project: Drools
> Issue Type: Task
> Components: Scenario Simulation and Testing
> Reporter: Juraj Soltes
> Assignee: Daniele Zonca
>
> The User wants to create the scenario simulation asset in the workbench.
> Copy an new asset handler on the client side.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (DROOLS-2674) Save, reload and open a scenario
by Toni Rikkola (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2674?page=com.atlassian.jira.plugi... ]
Toni Rikkola updated DROOLS-2674:
---------------------------------
Description:
As a business analyst I want to save a scenario so that all the data I fill in are stored and can be reloaded. ( over an empty asset file without the persistance )
The task requires:
* A copy&paste of the text editor modules in to drools-wb module list.
* Setting the file extension for the simulation tests ( does not have to be final, we can change it later )
* Renaming the classes to fit the simulation test terms
* Change the model from String to ScenarioSimulationModel
* Adding the modules in to the drools-wb -webapp
* Adding the modules into the droolsjbpm-bootstrap pom.xml
After the feature is done:
* User can upload a file with the extension using the upload tool
* User can see the file in the Project Asset List screen and open it
was:As a business analyst I want to save a scenario so that all the data I fill in are stored and can be reloaded. ( over an empty asset file without the persistance )
> Save, reload and open a scenario
> --------------------------------
>
> Key: DROOLS-2674
> URL: https://issues.jboss.org/browse/DROOLS-2674
> Project: Drools
> Issue Type: Task
> Components: Scenario Simulation and Testing
> Reporter: Juraj Soltes
> Assignee: Daniele Zonca
>
> As a business analyst I want to save a scenario so that all the data I fill in are stored and can be reloaded. ( over an empty asset file without the persistance )
> The task requires:
> * A copy&paste of the text editor modules in to drools-wb module list.
> * Setting the file extension for the simulation tests ( does not have to be final, we can change it later )
> * Renaming the classes to fit the simulation test terms
> * Change the model from String to ScenarioSimulationModel
> * Adding the modules in to the drools-wb -webapp
> * Adding the modules into the droolsjbpm-bootstrap pom.xml
> After the feature is done:
> * User can upload a file with the extension using the upload tool
> * User can see the file in the Project Asset List screen and open it
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (WFLY-10664) JBoss CLI doesn't work on OpenShift
by Martin Styk (JIRA)
Martin Styk created WFLY-10664:
----------------------------------
Summary: JBoss CLI doesn't work on OpenShift
Key: WFLY-10664
URL: https://issues.jboss.org/browse/WFLY-10664
Project: WildFly
Issue Type: Bug
Components: CLI
Environment: OpenShift/MiniShift
* minishift v1.15.1+f19ac09
* CDK v3.4.0-2
EAP CD12
* Registry registry.access.redhat.com
* Namespace/Repository jboss-eap-7-tech-preview/eap-cd-openshift
* Tag 12.0-14
Reporter: Martin Styk
Assignee: Jean-Francois Denise
Priority: Critical
I am unable to access JBoss CLI console running EAP CD12 on OpenShift.
On OS webconsole terminal:
{code}
cd $JBOSS_HOME/bin
sh jboss-cli.sh
You are disconnected at the moment. Type 'connect' to connect to the server or 'help' for the list of supported commands.
{code}
No new line appears and I am not able to enter any character, thus I can not connect. I can only exit JBoss CLI console with Ctrl + C.
With CD12 it doesn't work neither with terminal session on web console, nor with {{oc rsh <pod>}} from local terminal.
This doesn't happen with EAP 7.0 and EAP 7.1 openshift images. EAP CD12 distribution (not the OpenShift image) is also not affected.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (JGRP-2227) Use of AUTH does not result in a SecurityException, but instead nodes create separate clusters with the same name
by Bela Ban (JIRA)
[ https://issues.jboss.org/browse/JGRP-2227?page=com.atlassian.jira.plugin.... ]
Bela Ban resolved JGRP-2227.
----------------------------
Resolution: Cannot Reproduce
> Use of AUTH does not result in a SecurityException, but instead nodes create separate clusters with the same name
> -----------------------------------------------------------------------------------------------------------------
>
> Key: JGRP-2227
> URL: https://issues.jboss.org/browse/JGRP-2227
> Project: JGroups
> Issue Type: Bug
> Affects Versions: 4.0.6
> Reporter: Robert Cernak
> Assignee: Bela Ban
> Fix For: 4.0.13
>
> Attachments: jgroupsDoesNotThrowSecurityExceptionWithJgroups4012.zip, jgroupsLogs.zip, traceLogs.zip
>
>
> I implemented method org.jgroups.auth.AuthToken#authenticate(AuthToken token, Message msg) in my class and its body contained only one line: return false;
> In this way authentication should be false and I should get SecurityException.
> When I started joining of nodes together to form a cluster, instead of getting SecurityException, nodes formed 2 different clusters with the same name.
> I am sure method was evaluated, since I tried to run it also with breakpoint, which was triggered during joining process.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (JGRP-2227) Use of AUTH does not result in a SecurityException, but instead nodes create separate clusters with the same name
by Bela Ban (JIRA)
[ https://issues.jboss.org/browse/JGRP-2227?page=com.atlassian.jira.plugin.... ]
Bela Ban commented on JGRP-2227:
--------------------------------
2 issues:
* You need to place AUTH *below* GMS, not *above*, or else it cannot check JOIN requests and responses. In your jgroupsCommandChannel.xml, this is incorrect
* {{AUTH.auth_coord}} needs to be set to {{false}}, or else the JOIN-RSP with the rejection is not sent up the stack
When I do this, everything works fine.
> Use of AUTH does not result in a SecurityException, but instead nodes create separate clusters with the same name
> -----------------------------------------------------------------------------------------------------------------
>
> Key: JGRP-2227
> URL: https://issues.jboss.org/browse/JGRP-2227
> Project: JGroups
> Issue Type: Bug
> Affects Versions: 4.0.6
> Reporter: Robert Cernak
> Assignee: Bela Ban
> Fix For: 4.0.13
>
> Attachments: jgroupsDoesNotThrowSecurityExceptionWithJgroups4012.zip, jgroupsLogs.zip, traceLogs.zip
>
>
> I implemented method org.jgroups.auth.AuthToken#authenticate(AuthToken token, Message msg) in my class and its body contained only one line: return false;
> In this way authentication should be false and I should get SecurityException.
> When I started joining of nodes together to form a cluster, instead of getting SecurityException, nodes formed 2 different clusters with the same name.
> I am sure method was evaluated, since I tried to run it also with breakpoint, which was triggered during joining process.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years