我正在使用他们的Java SDK调用Azure。有时,调用会挂起读取的套接字并且永远不会返回。我尝试使用版本0.5.0和0.6.0的SDK,结果相同。有没有办法设置读取和连接超时?我尝试过使用以下内容,但似乎没有使用它们。有什么建议吗?
URI uri = new URI("https://management.core.windows.net"); //$NON-NLS-1$
configuration = ManagementConfiguration.configure(uri, subscriptionId, keyStoreLocation, keyStorePassword, KeyStoreType.jks);
configuration.setProperty(Configuration.PROPERTY_CONNECT_TIMEOUT, new Integer(1));
configuration.setProperty(Configuration.PROPERTY_READ_TIMEOUT, new Integer(1));
computeManagementClient = ComputeManagementService.create(configuration);