You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2019/10/08 14:16:08 UTC

[tomcat] branch 8.5.x updated: Update URL for code signing service.

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
     new 4a9f854  Update URL for code signing service.
4a9f854 is described below

commit 4a9f854a67bc5cece8fa83278ac5449c4b1f54d9
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Oct 8 15:07:14 2019 +0100

    Update URL for code signing service.
---
 java/org/apache/tomcat/buildutil/SignCode.java | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/tomcat/buildutil/SignCode.java b/java/org/apache/tomcat/buildutil/SignCode.java
index 3f0c50f..e6b6008 100644
--- a/java/org/apache/tomcat/buildutil/SignCode.java
+++ b/java/org/apache/tomcat/buildutil/SignCode.java
@@ -51,7 +51,11 @@ import org.w3c.dom.Node;
 import org.w3c.dom.NodeList;
 
 /**
- * Ant task that submits a file to the Symantec code-signing service.
+ * Ant task that submits a file to the Digicert (formally Symantec) code-signing
+ * service. The service is defined by the published
+ * <a href="https://api.ws.digicert.com/webtrust/SigningService?wsdl">WSDL</a>.
+ * Note that while the service has migrated to a Digicert domain, the namespace
+ * continues to use a Symantec domain.
  */
 public class SignCode extends Task {
 
@@ -64,7 +68,7 @@ public class SignCode extends Task {
     static {
         try {
             SIGNING_SERVICE_URL = new URL(
-                    "https://api-appsec-cws.ws.symantec.com/webtrust/SigningService");
+                    "https://api-appsec.pki.digicert.com/webtrust/SigningService");
         } catch (MalformedURLException e) {
             throw new IllegalArgumentException(e);
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org