<url-pattern>/visualization/*</url-pattern>
        </servlet-mapping>
 
-       <servlet-mapping>
-               <servlet-name>GeoVisualizationServlet</servlet-name>
-               <url-pattern>/visualization/geovisualization/*</url-pattern>
-       </servlet-mapping>
-
-       <servlet-mapping>
-               <servlet-name>EntityCountHistoryServlet</servlet-name>
-               <url-pattern>/visualization/entityCountHistory/*</url-pattern>
-       </servlet-mapping>
-
        <filter-mapping>
                <filter-name>springSecurityFilterChain</filter-name>
                <url-pattern>/*</url-pattern>
 
                <servlet-class>org.onap.aai.sparky.viewandinspect.servlet.VisualizationServlet</servlet-class>
        </servlet>
 
-       <servlet>
-               <servlet-name>GeoVisualizationServlet</servlet-name>
-               <servlet-class>org.onap.aai.sparky.inventory.servlet.GeoVisualizationServlet</servlet-class>
-       </servlet>
-
-       <servlet>
-               <servlet-name>EntityCountHistoryServlet</servlet-name>
-               <servlet-class>org.onap.aai.sparky.inventory.servlet.EntityCountHistoryServlet</servlet-class>
-       </servlet>
-
-    
-
        <filter>
                <filter-name>ElasticSearchSynchronizerFilter</filter-name>
                <filter-class>org.onap.aai.sparky.synchronizer.filter.ElasticSearchSynchronizerFilter</filter-class>
 
--- /dev/null
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017 Amdocs
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ */
+package org.onap.aai.sparky;
+
+import org.apache.camel.Exchange;
+
+/**
+ * The Class HelloWorld.
+ */
+public class HelloWorld {
+  
+  /**
+   * Instantiates a new hello world.
+   */
+  public HelloWorld() {}
+
+  /**
+   * Speak.
+   *
+   * @param exc the exc
+   */
+  public final void speak(Exchange exc) {
+    exc.setOut(exc.getIn());
+    exc.getOut().setBody("Hello World!");
+  }
+}
\ No newline at end of file
 
   private static final String TOPOGRAPHICAL_INDEX_NAME_DEFAULT =
       "topographicalsearchindex-localhost";
 
-  private static final String ENTITY_COUNT_HISTORY_INDEX_NAME_DEFAULT =
-      "entitycounthistoryindex-localhost";
-
   private static final String VERSION_DEFAULT = "v1";
 
   public static SearchServiceConfig getConfig() throws Exception {
     auditIndexName = sasProps.getProperty("auditIndexName", AUDIT_INDEX_NAME_DEFAULT);
     topographicalSearchIndex = sasProps.getProperty("topographicalIndexName",
         TOPOGRAPHICAL_INDEX_NAME_DEFAULT);
-    entityCountHistoryIndex = sasProps.getProperty("entityCountHistoryIndexName",
-        ENTITY_COUNT_HISTORY_INDEX_NAME_DEFAULT);
     certName =
         sasProps.getProperty("ssl.cert-name", "aai-client-cert.p12");
     keystorePassword = sasProps.getProperty("ssl.keystore-password",
 
 
 import org.onap.aai.sparky.dal.NetworkTransaction;
 import org.onap.aai.sparky.dal.aai.ActiveInventoryDataProvider;
+import org.onap.aai.sparky.dal.aai.config.ActiveInventoryConfig;
 import org.onap.aai.sparky.dal.rest.OperationResult;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
     OperationResult result = null;
     try {
       // todo: use proper config instead of hard-coding parameters
-      result = aaiProvider.queryActiveInventoryWithRetries(txn.getLink(), "application/json", 5);
+      final String absoluteSelfLink = ActiveInventoryConfig.getConfig().repairSelfLink(txn.getLink());
+      result = aaiProvider.queryActiveInventoryWithRetries(absoluteSelfLink, "application/json", 5);
     } catch (Exception exc) {
       logger.error("Failure to resolve self link from AAI.  Error = ", exc);
       result = new OperationResult(500,
 
       } else {
         System.out.println("keystore file doesn't exist, preloading new file with jssecacerts");
       }
-      password = "changeit";
+      password = keystorePassword;
 
     }
 
 
 # Index names for various searches.
 #
 elasticsearch.indexName=entity-search-index
-elasticsearch.topographicalIndexName=topography-search-index
-elasticsearch.entityCountHistoryIndexName=entitycounthistoryindex
 elasticsearch.autosuggestIndexname=entity-autosuggest-index
 
 # Default document type
 
                <url-pattern>/visualization/*</url-pattern>
        </servlet-mapping>
 
-       <servlet-mapping>
-               <servlet-name>GeoVisualizationServlet</servlet-name>
-               <url-pattern>/visualization/geovisualization/*</url-pattern>
-       </servlet-mapping>
-
-       <servlet-mapping>
-               <servlet-name>EntityCountHistoryServlet</servlet-name>
-               <url-pattern>/visualization/entityCountHistory/*</url-pattern>
-       </servlet-mapping>
-
        <filter-mapping>
                <filter-name>springSecurityFilterChain</filter-name>
                <url-pattern>/*</url-pattern>
 
                <servlet-class>org.onap.aai.sparky.viewandinspect.servlet.VisualizationServlet</servlet-class>
        </servlet>
 
-       <servlet>
-               <servlet-name>GeoVisualizationServlet</servlet-name>
-               <servlet-class>org.onap.aai.sparky.inventory.servlet.GeoVisualizationServlet</servlet-class>
-       </servlet>
-
-       <servlet>
-               <servlet-name>EntityCountHistoryServlet</servlet-name>
-               <servlet-class>org.onap.aai.sparky.inventory.servlet.EntityCountHistoryServlet</servlet-class>
-       </servlet>
-
-    
-
        <filter>
                <filter-name>ElasticSearchSynchronizerFilter</filter-name>
                <filter-class>org.onap.aai.sparky.synchronizer.filter.ElasticSearchSynchronizerFilter</filter-class>
 
 #
 # Searchable entities
 search-service.indexName=entity-search-index
-# Inventory searches
-search-service.topographicalIndexName=topography-search-index
-search-service.entityCountHistoryIndexName=entitycounthistoryindex
 
 ############################## Version ##############################
 #