[JBoss JIRA] (SRAMP-470) Maven Facade: Improve authentication
by Eric Wittmann (JIRA)
[ https://issues.jboss.org/browse/SRAMP-470?page=com.atlassian.jira.plugin.... ]
Work on SRAMP-470 started by Eric Wittmann.
> Maven Facade: Improve authentication
> ------------------------------------
>
> Key: SRAMP-470
> URL: https://issues.jboss.org/browse/SRAMP-470
> Project: S-RAMP
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: S-RAMP API
> Reporter: Eric Wittmann
> Assignee: Eric Wittmann
> Fix For: 0.5.0.Final
>
>
> Currently the maven facade requires authentication because we do not have a mechanism for providing selective read-only access to the JCR repository. However, the Maven Facade should be a read-only (for Maven GET operations) window into the s-ramp data.
> We need to do two things:
> 1) If the Maven Facade Request has authentication credentials associated with it, use them to log into the s-ramp repository
> 2) If the Maven Facade Request does *not* have authentication credentials associated with it, then log into JCR using read-only credentials
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
10 years, 7 months
[JBoss JIRA] (RTGOV-498) EPN for reporting responsetime events to Elasticsearch
by Gary Brown (JIRA)
Gary Brown created RTGOV-498:
--------------------------------
Summary: EPN for reporting responsetime events to Elasticsearch
Key: RTGOV-498
URL: https://issues.jboss.org/browse/RTGOV-498
Project: RTGov (Run Time Governance)
Issue Type: Task
Security Level: Public (Everyone can see)
Reporter: Gary Brown
Assignee: Gary Brown
Fix For: 2.0.0.Final
Elasticsearch is only available as part of the new RTGov UI that can be deployed as a separate component on FSW 6.0.
Therefore this task will provide an EPN that will subscribe to the responsetime events and persist them in Elasticsearch.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
10 years, 7 months
[JBoss JIRA] (SRAMP-453) Exception if using Backspace on CLI password prompt
by Eric Wittmann (JIRA)
[ https://issues.jboss.org/browse/SRAMP-453?page=com.atlassian.jira.plugin.... ]
Eric Wittmann updated SRAMP-453:
--------------------------------
Description:
If you mistype a password in the CLI prompt and hit Backspace 1 too many times, boom.
{code}
S-RAMP Password: java.lang.ArrayIndexOutOfBoundsException
at java.lang.System.arraycopy(Native Method)
at java.lang.AbstractStringBuilder.insert(AbstractStringBuilder.java:1152)
at java.lang.StringBuilder.insert(StringBuilder.java:336)
at org.jboss.aesh.console.Buffer.write(Buffer.java:319)
at org.jboss.aesh.console.Console.writeChar(Console.java:837)
at org.jboss.aesh.console.Console.writeChars(Console.java:832)
at org.jboss.aesh.console.Console.parseOperation(Console.java:515)
at org.jboss.aesh.console.Console.read(Console.java:452)
at org.overlord.sramp.shell.InteractiveShellCommandReader.promptForPassword(InteractiveShellCommandReader.java:161)
at org.overlord.sramp.shell.ShellContextImpl.promptForPassword(ShellContextImpl.java:172)
at org.overlord.sramp.shell.commands.core.ConnectCommand.promptForPassword(ConnectCommand.java:107)
at org.overlord.sramp.shell.commands.core.ConnectCommand.execute(ConnectCommand.java:67)
at org.overlord.sramp.shell.SrampShell.run(SrampShell.java:102)
at org.overlord.sramp.shell.SrampShell.main(SrampShell.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297)
at java.lang.Thread.run(Thread.java:744)
{code}
was:
If you mistype a password in the CLI prompt and hit Backspace 1 too many times, boom.
S-RAMP Password: java.lang.ArrayIndexOutOfBoundsException
at java.lang.System.arraycopy(Native Method)
at java.lang.AbstractStringBuilder.insert(AbstractStringBuilder.java:1152)
at java.lang.StringBuilder.insert(StringBuilder.java:336)
at org.jboss.aesh.console.Buffer.write(Buffer.java:319)
at org.jboss.aesh.console.Console.writeChar(Console.java:837)
at org.jboss.aesh.console.Console.writeChars(Console.java:832)
at org.jboss.aesh.console.Console.parseOperation(Console.java:515)
at org.jboss.aesh.console.Console.read(Console.java:452)
at org.overlord.sramp.shell.InteractiveShellCommandReader.promptForPassword(InteractiveShellCommandReader.java:161)
at org.overlord.sramp.shell.ShellContextImpl.promptForPassword(ShellContextImpl.java:172)
at org.overlord.sramp.shell.commands.core.ConnectCommand.promptForPassword(ConnectCommand.java:107)
at org.overlord.sramp.shell.commands.core.ConnectCommand.execute(ConnectCommand.java:67)
at org.overlord.sramp.shell.SrampShell.run(SrampShell.java:102)
at org.overlord.sramp.shell.SrampShell.main(SrampShell.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297)
at java.lang.Thread.run(Thread.java:744)
> Exception if using Backspace on CLI password prompt
> ---------------------------------------------------
>
> Key: SRAMP-453
> URL: https://issues.jboss.org/browse/SRAMP-453
> Project: S-RAMP
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Reporter: Brett Meyer
> Assignee: David virgil naranjo
> Fix For: 0.5.0.Final
>
>
> If you mistype a password in the CLI prompt and hit Backspace 1 too many times, boom.
> {code}
> S-RAMP Password: java.lang.ArrayIndexOutOfBoundsException
> at java.lang.System.arraycopy(Native Method)
> at java.lang.AbstractStringBuilder.insert(AbstractStringBuilder.java:1152)
> at java.lang.StringBuilder.insert(StringBuilder.java:336)
> at org.jboss.aesh.console.Buffer.write(Buffer.java:319)
> at org.jboss.aesh.console.Console.writeChar(Console.java:837)
> at org.jboss.aesh.console.Console.writeChars(Console.java:832)
> at org.jboss.aesh.console.Console.parseOperation(Console.java:515)
> at org.jboss.aesh.console.Console.read(Console.java:452)
> at org.overlord.sramp.shell.InteractiveShellCommandReader.promptForPassword(InteractiveShellCommandReader.java:161)
> at org.overlord.sramp.shell.ShellContextImpl.promptForPassword(ShellContextImpl.java:172)
> at org.overlord.sramp.shell.commands.core.ConnectCommand.promptForPassword(ConnectCommand.java:107)
> at org.overlord.sramp.shell.commands.core.ConnectCommand.execute(ConnectCommand.java:67)
> at org.overlord.sramp.shell.SrampShell.run(SrampShell.java:102)
> at org.overlord.sramp.shell.SrampShell.main(SrampShell.java:67)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297)
> at java.lang.Thread.run(Thread.java:744)
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
10 years, 7 months
[JBoss JIRA] (SRAMP-456) CXF version mismatch causing WebServiceTest to fail
by Eric Wittmann (JIRA)
[ https://issues.jboss.org/browse/SRAMP-456?page=com.atlassian.jira.plugin.... ]
Eric Wittmann updated SRAMP-456:
--------------------------------
Fix Version/s: 0.6.0
(was: 0.5.0.Final)
> CXF version mismatch causing WebServiceTest to fail
> ---------------------------------------------------
>
> Key: SRAMP-456
> URL: https://issues.jboss.org/browse/SRAMP-456
> Project: S-RAMP
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Reporter: Gary Brown
> Assignee: Brett Meyer
> Fix For: 0.6.0
>
>
> Switchyard is currently using an older version of the IP BOM (CR6), which has version 2.6.8, while current version for alpha is supposed to be CR9, which has cxf 2.7.11.
> This is causing a CNFE for org.apache.cxf.io.CopyingOutputStream.
> Currently ignoring the test until versions are aligned.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
10 years, 7 months
[JBoss JIRA] (RTGOV-497) Serivce dependency graph based on static and dynamic information
by Gary Brown (JIRA)
Gary Brown created RTGOV-497:
--------------------------------
Summary: Serivce dependency graph based on static and dynamic information
Key: RTGOV-497
URL: https://issues.jboss.org/browse/RTGOV-497
Project: RTGov (Run Time Governance)
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: User Interface
Reporter: Gary Brown
Assignee: Michael Clay
Fix For: 2.1.0.Final
The current service dependency graph is based on a rolling window of short term activity information, so if a service is not used during that period, then it will not show up on the graph.
A more comprehensive graph would be useful that builds on static information available from sources such as switchyard or possibly sramp, enhanced with additional detail when available from sources such as rtgov.
Its possible that just static information can be used to provide the graph structure, if the internal relationships between non-promoted services is available via JMX.
The dynamic information can be used to help provide additional useful information, to help identify performance bottlenecks etc.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
10 years, 7 months