In 3.6 next code gives an error IIOPAddress.java>> line 626. If a NetworkInterface does not have a displayName(), a NULL is returned. => The implemented code does not take this null into account. After reversing to JacOrb 3.5 (without this code), everything works again. for (NetworkInterface ni : Collections.list(NetworkInterface.getNetworkInterfaces())) { boolean isVirtual = false; for (String nvi : networkVirtualInterfaces) { if (ni.getDisplayName().contains(nvi)) { isVirtual = true; break; } }
Added test and fix in SHA 802029d2b3781456d287c309a35cd1842e947477