[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2021-01-13 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the attached 
one is adapted from Apache Hive's implementation
3. The jmxmp classes and sasl modules need to be added to karaf startup and 
etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar in the JaasAuthenticator. 
5. -Consider using the javax.management jar instead (as src jars are available 
for debugging)-

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the attached 
one is adapted from Apache Hive's implementation
3. The jmxmp classes and sasl modules need to be added to karaf startup and 
etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar in the JaasAuthenticator. 
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>  Components: karaf
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start, then add 
> TLS
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the 
> attached one is adapted from Apache Hive's implementation
> 3. The jmxmp classes and sasl modules need to be added to karaf startup and 
> etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar in the JaasAuthenticator. 
> 5. -Consider using the javax.management jar instead (as src jars are 
> available for debugging)-
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Jira


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Baptiste Onofré updated KARAF-6888:

Component/s: karaf

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>  Components: karaf
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start, then add 
> TLS
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the 
> attached one is adapted from Apache Hive's implementation
> 3. The jmxmp classes and sasl modules need to be added to karaf startup and 
> etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar in the JaasAuthenticator. 
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the attached 
one is adapted from Apache Hive's implementation
3. The jmxmp classes and sasl modules need to be added to karaf startup and 
etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar in the JaasAuthenticator. 
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to implement 
one. The attached one is adapted from Apache Hive's implementation
3. The jmxmp classes and sasl modules need to be added to karaf startup and 
etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start, then add 
> TLS
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need the 
> attached one is adapted from Apache Hive's implementation
> 3. The jmxmp classes and sasl modules need to be added to karaf startup and 
> etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar in the JaasAuthenticator. 
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to implement 
one. The attached one is adapted from Apache Hive's implementation
3. The jmxmp classes and sasl modules need to be added to karaf startup and 
etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to implement 
one
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start, then add 
> TLS
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to 
> implement one. The attached one is adapted from Apache Hive's implementation
> 3. The jmxmp classes and sasl modules need to be added to karaf startup and 
> etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start, then add TLS
2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to implement 
one
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start, then add 
> TLS
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore, so we need to 
> implement one
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
the following changes, I'm able to get a list of JMX domains.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path. With 
> the following changes, I'm able to get a list of JMX domains.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Attachment: jre.properties
karaf

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, jre.properties, karaf, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar
5. Consider using the javax.management jar instead (as src jars are available 
for debugging)

{noformat}

  javax.management
  jmx-remote-optional-jmxmp
  1.0-b06

{noformat}

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar
> 5. Consider using the javax.management jar instead (as src jars are available 
> for debugging)
> {noformat}
> 
>   javax.management
>   jmx-remote-optional-jmxmp
>   1.0-b06
> 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Attachment: org.apache.karaf.management.server-4.2.9.jar

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Attachment: JMXMPClient.java

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JMXMPClient.java, 
> JaasAuthenticator.java, PlainSaslServer.java, 
> org.apache.karaf.management.server-4.2.9.jar
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Attachment: PlainSaslServer.java
JaasAuthenticator.java
ConnectorServerFactory.java

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
> Attachments: ConnectorServerFactory.java, JaasAuthenticator.java, 
> PlainSaslServer.java
>
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
jmxmp jar

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com.sun.jdmk...sasl.AuthorizeCallback


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com/sun/jdmk/security/sasl/AuthenticateCallback that is not included in the 
> jmxmp jar



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFounde error for legacy 
com.sun.jdmk...sasl.AuthorizeCallback

> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFounde error for legacy 
> com.sun.jdmk...sasl.AuthorizeCallback



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (KARAF-6888) Sort out JMXMP authentication

2020-10-16 Thread Matt Pavlovich (Jira)


 [ 
https://issues.apache.org/jira/browse/KARAF-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Pavlovich updated KARAF-6888:
--
Description: 
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFound error for legacy 
com.sun.jdmk...sasl.AuthorizeCallback

  was:
Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.

Notes:
1. Probably need to support SASL/PLAIN to keep it simple to start
2. JDK's don't ship with a SASL/PLAIN Provider anymore
3. The jmxmp classes and sasl modules seem to need to be added to karaf startup 
and etc/jre.properties
4. Need to solve for a ClassNotFounde error for legacy 
com.sun.jdmk...sasl.AuthorizeCallback


> Sort out JMXMP authentication
> -
>
> Key: KARAF-6888
> URL: https://issues.apache.org/jira/browse/KARAF-6888
> Project: Karaf
>  Issue Type: Improvement
>Affects Versions: 4.2.9
>Reporter: Matt Pavlovich
>Priority: Major
>
> Out-of-the-box, karaf's jmxmp support doesn't seem to have a happy path.
> Notes:
> 1. Probably need to support SASL/PLAIN to keep it simple to start
> 2. JDK's don't ship with a SASL/PLAIN Provider anymore
> 3. The jmxmp classes and sasl modules seem to need to be added to karaf 
> startup and etc/jre.properties
> 4. Need to solve for a ClassNotFound error for legacy 
> com.sun.jdmk...sasl.AuthorizeCallback



--
This message was sent by Atlassian Jira
(v8.3.4#803005)