I want to set particular ip in IOR file, I am doing it as below:
props.put("iiop.publishIP", "auto");
props.put("iiop.port", "60003");
props.put("iiop.hostname", "165.100.10.1");
props.put("iiop.listenAddress", "0.0.0.0");
When I decode the generated IOR file I am seeing the machine IP instead of configured one(165.100.10.1).I am able to see the port(60003) in decoded IOR but not the IP.
Am I missing something, can someone please help.