Hello,
I am trying to connect to my local Wildfly cli from the java program.
```
CommandContext ctx = org.jboss.as.cli.CommandContextFactory.getInstance().newCommandContext("posuser", "test".toCharArray());
ctx.connectController("127.0.0.1", 9990);
String CLIcmd = "ls /host=master/server-config=server-one";
ModelControllerClient client = ctx.getModelControllerClient();
ModelNode commandRequest = ctx.buildRequest(CLIcmd);
ModelNode result = client.execute(commandRequest);
System.out.println(result);
```
I started Wildfly as follows,
```
.\bin\standalone.bat -b 0.0.0.0 -bmanagement 0.0.0.0 -c standalone-full.xml
```
I am getting following error, what could be the reason for this?
```
Caused by: java.io.IOException: java.net.ConnectException: JBAS012144: Could not connect to remote://
127.0.0.1:9990. The connection timed out
```