diff --git a/README.textile b/README.textile
index 50ecfe15f..854a3f7dc 100644
--- a/README.textile
+++ b/README.textile
@@ -7,12 +7,12 @@ Insight is a VMware® Web application that gives you real-time visibility into a
* Insight DevEdition answers the question: "What just happened?"
* Insight Operations answers the question: "How does my code perform in production?"
-See more at "http://www.springsource.org/insight":http://www.springsource.org/insight
+See more at "https://www.springsource.org/insight":https://www.springsource.org/insight
h2. Installing and Using Plugins
Plugins for different versions of Insight can be downloaded from:
- "http://maven.springframework.org/release/com/springsource/insight/plugins/":http://maven.springframework.org/release/com/springsource/insight/plugins/
+ "https://maven.springframework.org/release/com/springsource/insight/plugins/":https://maven.springframework.org/release/com/springsource/insight/plugins/
Plugins must be copied into the "insight/collection-plugins" directory of an Insight Developer Edition and Insight Dashboard/Agent.
@@ -24,8 +24,8 @@ h2. Creating a Plugin
h2. Resources
-* Checkout our webinar on developing plugins at: http://www.youtube.com/watch?v=YR3CYnryflw
-* Tutorial: http://pubs.vmware.com/vfabric51/index.jsp?topic=/com.vmware.vfabric.tc-server.2.7/devedition/tutorial-plugin.html
+* Checkout our webinar on developing plugins at: https://www.youtube.com/watch?v=YR3CYnryflw
+* Tutorial: https://pubs.vmware.com/vfabric51/index.jsp?topic=/com.vmware.vfabric.tc-server.2.7/devedition/tutorial-plugin.html
h2. Requirements for a Plugin
diff --git a/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonPluginRuntimeDescriptor.java b/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonPluginRuntimeDescriptor.java
index 9652ddffa..96d8a4134 100644
--- a/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonPluginRuntimeDescriptor.java
+++ b/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonPluginRuntimeDescriptor.java
@@ -53,7 +53,7 @@ public String getPublisher() {
@Override
public String getHref(){
- return "http://www.axonframework.org/";
+ return "https://axoniq.io";
}
}
diff --git a/collection-plugins/gemfire-light/README.textile b/collection-plugins/gemfire-light/README.textile
index ec97e2558..c213204a0 100644
--- a/collection-plugins/gemfire-light/README.textile
+++ b/collection-plugins/gemfire-light/README.textile
@@ -1,6 +1,6 @@
h1. GemFire plugin (light) for Spring Insight
-Spring Insight runs in the SpringSource tc Server. See http://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use GemFire (http://www.vmware.com/products/application-platform/vfabric-gemfire/overview.html) through the GemFire Java driver, which typically works outside the normal ORM flow.
+Spring Insight runs in the SpringSource tc Server. See https://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use GemFire (https://www.vmware.com/products/application-platform/vfabric-gemfire/overview.html) through the GemFire Java driver, which typically works outside the normal ORM flow.
The light plugin monitors Query API only.
diff --git a/collection-plugins/gemfire/README.textile b/collection-plugins/gemfire/README.textile
index 5fd561533..a1e56beac 100644
--- a/collection-plugins/gemfire/README.textile
+++ b/collection-plugins/gemfire/README.textile
@@ -1,6 +1,6 @@
h1. GemFire plugin for Spring Insight
-Spring Insight runs in the SpringSource tc Server. See http://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use GemFire (http://www.vmware.com/products/application-platform/vfabric-gemfire/overview.html) through the GemFire Java driver, which typically works outside the normal ORM flow.
+Spring Insight runs in the SpringSource tc Server. See https://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use GemFire (https://www.vmware.com/products/application-platform/vfabric-gemfire/overview.html) through the GemFire Java driver, which typically works outside the normal ORM flow.
h2. Compatibility
diff --git a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/DB2SqlParser.java b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/DB2SqlParser.java
index 32c7e3e06..441f58243 100644
--- a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/DB2SqlParser.java
+++ b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/DB2SqlParser.java
@@ -19,7 +19,7 @@
import com.springsource.insight.plugin.jdbc.parser.SimpleSqlUrlParser;
/**
- * @see DB2 JDBC Driver and URL information
+ * @see DB2 JDBC Driver and URL information
*/
public class DB2SqlParser extends SimpleSqlUrlParser {
public static final int DEFAULT_CONNECTION_PORT=6789;
diff --git a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/MySqlParser.java b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/MySqlParser.java
index 343116aac..d0f817fcb 100644
--- a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/MySqlParser.java
+++ b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/MySqlParser.java
@@ -19,7 +19,7 @@
/**
* taken from
- * http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration
+ * https://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration
* -properties.html
*
* jdbc:mysql://[host][,failoverhost...][:port]/[database] »
diff --git a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/SybaseSqlParser.java b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/SybaseSqlParser.java
index 5db116d1b..4e3ff45f0 100644
--- a/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/SybaseSqlParser.java
+++ b/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/parsers/SybaseSqlParser.java
@@ -26,7 +26,7 @@
import com.springsource.insight.util.StringUtil;
/**
- * @see Sybase JDBC Driver and URL Information
+ * @see Sybase JDBC Driver and URL Information
*/
public class SybaseSqlParser extends AbstractSqlParser {
public static final String VENDOR="sybase", SUB_TYPE="Tds";
diff --git a/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java b/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java
index 3e2b2fd0f..b229c53fd 100644
--- a/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java
+++ b/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java
@@ -29,7 +29,7 @@ private JwsServiceDefinitions() {
public static final String SERVICE_NAME="JwsServiceTest",
ENDPOINT=SERVICE_NAME + "Endpoint",
PORT_NAME=SERVICE_NAME + "PortName",
- TARGET_NAMESPACE="http://lu.ci.an.demo/" + SERVICE_NAME,
+ TARGET_NAMESPACE="https://lu.ci.an.demo/" + SERVICE_NAME,
WSDL_LOCATION="WEB-INF/wsdl/" + SERVICE_NAME + ".wsdl";
// constants used by the WebMethod/WebParam annotation(s)
diff --git a/collection-plugins/mongodb/README.textile b/collection-plugins/mongodb/README.textile
index dd40bc74b..6c630d7cf 100644
--- a/collection-plugins/mongodb/README.textile
+++ b/collection-plugins/mongodb/README.textile
@@ -1,6 +1,6 @@
h1. MongoDB plugin for Spring Insight
-Spring Insight runs in the SpringSource tc Server. See http://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use MongoDB (http://www.mongodb.org) through the MongoDB Java driver, which typically works outside the normal ORM flow.
+Spring Insight runs in the SpringSource tc Server. See https://www.springsource.org/insight for details. This plugin adds instrumentation to for web applications that use MongoDB (https://www.mongodb.org) through the MongoDB Java driver, which typically works outside the normal ORM flow.
h2. What does it do?
diff --git a/collection-plugins/socket/src/test/java/com/springsource/insight/plugin/socket/HttpURLConnectionOperationCollectionAspectTest.java b/collection-plugins/socket/src/test/java/com/springsource/insight/plugin/socket/HttpURLConnectionOperationCollectionAspectTest.java
index c3ed9448e..cfbdf1774 100644
--- a/collection-plugins/socket/src/test/java/com/springsource/insight/plugin/socket/HttpURLConnectionOperationCollectionAspectTest.java
+++ b/collection-plugins/socket/src/test/java/com/springsource/insight/plugin/socket/HttpURLConnectionOperationCollectionAspectTest.java
@@ -117,7 +117,7 @@ public void testDefaultObscuredHeaders () throws IOException {
continue; // this is a response header and we do not intercept them
}
- // see http://stackoverflow.com/questions/2864062/getrequestpropertyauthorization-always-returns-null
+ // see https://stackoverflow.com/questions/2864062/getrequestpropertyauthorization-always-returns-null
List values=propsMap.get(hdrName);
if (ListUtil.size(values) <= 0) {
continue;
@@ -150,7 +150,7 @@ public void testObscuredHeaders () throws IOException {
assertObscureTestResults(marker, hdrName, "X-Dummy-Value", false);
for (String defName : HttpObfuscator.DEFAULT_OBFUSCATED_HEADERS_LIST) {
- // see http://stackoverflow.com/questions/2864062/getrequestpropertyauthorization-always-returns-null
+ // see https://stackoverflow.com/questions/2864062/getrequestpropertyauthorization-always-returns-null
List values=propsMap.get(defName);
if (ListUtil.size(values) <= 0) {
continue;
diff --git a/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/controller/ControllerOperationCollector.java b/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/controller/ControllerOperationCollector.java
index b7cadeae6..38432d657 100644
--- a/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/controller/ControllerOperationCollector.java
+++ b/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/controller/ControllerOperationCollector.java
@@ -36,8 +36,8 @@
/**
* Renders any {@link Map}, {@link Model}, {@link View}, {@link ModelMap}
* and/or {@link ModelAndView} attributes
- * @see Supported method argument types
- * @see Supported method return types
+ * @see Supported method argument types
+ * @see Supported method return types
*/
public class ControllerOperationCollector extends DefaultOperationCollector {
private static final InterceptConfiguration configuration = InterceptConfiguration.getInstance();
diff --git a/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/remoting/HttpInvokerRequestExecutorExternalResourceAnalyzer.java b/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/remoting/HttpInvokerRequestExecutorExternalResourceAnalyzer.java
index 23e0ced19..cef6ffaae 100644
--- a/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/remoting/HttpInvokerRequestExecutorExternalResourceAnalyzer.java
+++ b/collection-plugins/spring-web/src/main/java/com/springsource/insight/plugin/springweb/remoting/HttpInvokerRequestExecutorExternalResourceAnalyzer.java
@@ -46,7 +46,7 @@ public class HttpInvokerRequestExecutorExternalResourceAnalyzer extends Abstract
* Special attribute used to indicate whether the HTTP invocation was
* executed using core Java classes (e.g. {@link java.net.HttpURLConnection}
* only or via a framework (e.g., Apache client). We
+ * HREF="https://hc.apache.org/httpclient-3.x/">Apache client). We
* generate an external resource only for the core classes invocation
* and rely on the other plugins for the alternative frameworks. This is
* done in order to avoid ambiguity if both the HTTP invoker aspect and the
diff --git a/collection-plugins/spring-web/src/test/java/com/springsource/insight/plugin/springweb/rest/RestOperationCollectionTestSupport.java b/collection-plugins/spring-web/src/test/java/com/springsource/insight/plugin/springweb/rest/RestOperationCollectionTestSupport.java
index 5a3f56ff4..c874b2a6b 100644
--- a/collection-plugins/spring-web/src/test/java/com/springsource/insight/plugin/springweb/rest/RestOperationCollectionTestSupport.java
+++ b/collection-plugins/spring-web/src/test/java/com/springsource/insight/plugin/springweb/rest/RestOperationCollectionTestSupport.java
@@ -61,7 +61,7 @@ public void setUp () {
}
protected String createTestURI (String testName) {
- return "http://37.77.34.7:7365/" + getClass().getSimpleName() + "/" + testName;
+ return "https://37.77.34.7:7365/" + getClass().getSimpleName() + "/" + testName;
}
protected Operation assertRestOperationResult (Object ignored) {