Hi,
looks like bug in nxdbmgr. Somebody from dev team will check.
Best regards,
Victor
looks like bug in nxdbmgr. Somebody from dev team will check.
Best regards,
Victor
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
import javax.crypto.Cipher;
class CipherTest
{
public static final void main(String[] args)
{
long start = System.currentTimeMillis();
try
{
Cipher.getInstance("AES/CBC/PKCS5Padding");
}
catch(Exception e)
{
e.printStackTrace();
}
long elapsed = System.currentTimeMillis() - start;
System.out.println("Elapsed time " + elapsed + " milliseconds");
}
}
javac CipherTest.java
java CipherTest
<configuration>
<appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<Pattern>%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n</Pattern>
</layout>
</appender>
<root level="debug">
<appender-ref ref="Console"/>
</root>
</configuration>
java -Dnetxms.server=127.0.0.1 -Dnetxms.login=admin -Dnetxms.password=your_password -cp logback-classic-1.2.3.jar:logback-core-1.2.3.jar:.:nxshell-3.8.250.jar org.netxms.Shell