jminix icon indicating copy to clipboard operation
jminix copied to clipboard

A lightweight servlet-embedded JMX console

Results 7 jminix issues
Sort by recently updated
recently updated
newest added

Unfortunately, at the moment there is no way to see the available notifications: ![image](https://github.com/lbovet/jminix/assets/685832/4fb8842a-7e7f-47ca-9be1-765f24376b04) Is it possible to view available notifications? Is it possible in this case to subscribe to...

I have a ValueBean with managedAttribute of type LocalDate: ``` @ManagedAttribute @Override public LocalDate getMyDate() { return myDate; } @ManagedAttribute public void setMyDate(final LocalDate myDate) { this.myDate = myDate; }...

https://github.com/lbovet/jminix/blob/6115206e43d0ba32388092dfca1bd0761817e10a/src/main/java/org/jminix/console/resource/AttributeResource.java#L150 Scenario: - a user JMX attribute getter throws `RuntimeException` with null `getCause()` (for whatever reason; it is permitted by the exception contract). - it is picked up by the...

It'd be nice if there were out of the box support for JMXRP in addition to RMI. TLS / SASL support might be annoying to work in, but it looks...

Received once upon a time... Check if this is still needed. I got the same issue as listed in 6,7,8,10,15,16 not "able to handle special characters". It needed a small...

The currently used version of Dojo (1.3.1) in jminix includes the vulnerabilities CVE-2018-15494 and CVE-2021-23450.

The servlet currently used is javax not Jakarta. Jakarta is the way forward. Is there plans to add Jakarta servlet support?