summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2013-02-01 14:31:15 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2013-02-01 14:31:15 -0500
commit8ff3249f209c81cad21a4f7298b4c685e49e9103 (patch)
tree4ae308a70547e0cc17f1e2b6c25ed1ebdaf04269
parentd53360db7efd656be6a7a47387c308a0d1465407 (diff)
downloadpki-ticket-476.tar.gz
pki-ticket-476.tar.xz
pki-ticket-476.zip
Fixed getInstallToken() invocation.ticket-476
The configuration code has been modified to use the REST interface to get the installation token and ignore CA cert validation errors. Ticket #476
-rw-r--r--base/common/src/com/netscape/certsrv/client/ClientConfig.java6
-rw-r--r--base/common/src/com/netscape/certsrv/client/PKIConnection.java4
-rw-r--r--base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java4
3 files changed, 8 insertions, 6 deletions
diff --git a/base/common/src/com/netscape/certsrv/client/ClientConfig.java b/base/common/src/com/netscape/certsrv/client/ClientConfig.java
index 64eae17eb..ca17c8575 100644
--- a/base/common/src/com/netscape/certsrv/client/ClientConfig.java
+++ b/base/common/src/com/netscape/certsrv/client/ClientConfig.java
@@ -48,7 +48,7 @@ public class ClientConfig {
}
}
- boolean InstanceCreationMode = false;
+ boolean instanceCreationMode;
URI serverURI;
@@ -59,11 +59,11 @@ public class ClientConfig {
@XmlElement(defaultValue="false")
public boolean getInstanceCreationMode() {
- return InstanceCreationMode;
+ return instanceCreationMode;
}
public void setInstanceCreationMode(boolean mode) {
- this.InstanceCreationMode = mode;
+ this.instanceCreationMode = mode;
}
@XmlElement(name="ServerURI")
diff --git a/base/common/src/com/netscape/certsrv/client/PKIConnection.java b/base/common/src/com/netscape/certsrv/client/PKIConnection.java
index 4556f1c6a..c339f3d67 100644
--- a/base/common/src/com/netscape/certsrv/client/PKIConnection.java
+++ b/base/common/src/com/netscape/certsrv/client/PKIConnection.java
@@ -214,7 +214,7 @@ public class PKIConnection {
// Ignore the "UNTRUSTED_ISSUER" validity status
// during PKI instance creation since we are
// utilizing an untrusted temporary CA cert.
- if (!config.InstanceCreationMode) {
+ if (!config.getInstanceCreationMode()) {
// Otherwise, issue a WARNING, but allow this process
// to continue since we haven't installed a trusted CA
// cert for this operation.
@@ -228,7 +228,7 @@ public class PKIConnection {
// Ignore the "CA_CERT_INVALID" validity status
// during PKI instance creation since we are
// utilizing an untrusted temporary CA cert.
- if (!config.InstanceCreationMode) {
+ if (!config.getInstanceCreationMode()) {
// Otherwise, set approval false to deny this
// certificate so that the connection is terminated.
// (Expect an IOException on the outstanding
diff --git a/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java b/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
index a7ec566ce..f8869fc06 100644
--- a/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
+++ b/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
@@ -314,17 +314,19 @@ public class ConfigurationUtils {
public static String getInstallToken(String sdhost, int sdport, String user, String passwd) throws Exception {
IConfigStore cs = CMS.getConfigStore();
- boolean oldtoken = cs.getBoolean("cs.useOldTokenInterface", true);
+ boolean oldtoken = cs.getBoolean("cs.useOldTokenInterface", false);
if (oldtoken) {
return ConfigurationUtils.getOldToken(sdhost, sdport, user, passwd);
}
+
String csType = cs.getString("cs.type");
ClientConfig config = new ClientConfig();
config.setServerURI("https://" + sdhost + ":" + sdport + "/ca");
config.setUsername(user);
config.setPassword(passwd);
+ config.setInstanceCreationMode(true);
PKIConnection connection = new PKIConnection(config);
AccountClient accountClient = new AccountClient(connection);