From 6f1c324fd2e22ae94db3f4c9b68b3ed5ace154c0 Mon Sep 17 00:00:00 2001
From: Paul-Christian Volkmer <paul-christian.volkmer@mni.thm.de>
Date: Tue, 30 Jul 2013 16:33:13 +0200
Subject: [PATCH] Fixed #6646: Disable connector bean

Connector bean has to be disabled because connector could not get any
connection to database server. Connection to database server is
forbidden.
---
 src/main/webapp/WEB-INF/spring/spring-main.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/webapp/WEB-INF/spring/spring-main.xml b/src/main/webapp/WEB-INF/spring/spring-main.xml
index b8d4d669..ab93f162 100644
--- a/src/main/webapp/WEB-INF/spring/spring-main.xml
+++ b/src/main/webapp/WEB-INF/spring/spring-main.xml
@@ -54,11 +54,13 @@
 
 	<!-- Example of connector client configuration -->
 	<!-- Uncomment bean definition to activate connector -->
+	<!-- 
 	<bean id="connectorClient" scope="singleton" class="de.thm.arsnova.connector.client.ConnectorClientImpl">
 		<property name="serviceLocation" value="${connector.uri}"></property>
 		<property name="username" value="${connector.username}"></property>
 		<property name="password" value="${connector.password}"></property>
 	</bean>
+	-->
 	
 	<http:access-control allow-origin="*" allow-methods="GET" />
 </beans>
-- 
GitLab