diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml b/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml
index b46c8ada70556b4ac19bbd094c4373ab1d5b2a4c..757bcb57a2d960392fd3fbb4e7611e1638f45288 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml
@@ -12,7 +12,7 @@
         // Source path elements to Java classes to be compiled to JavaScript
     -->
     <source path="generic/client/web/client" />
-    <--source path="plugin/hcs/client/web/client" /-->
+    <!--source path="plugin/hcs/client/web/client" /-->
 
     <!-- Do not define servlets here, use web.xml -->
 
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java
new file mode 100644
index 0000000000000000000000000000000000000000..1b18d9bab1fe218f31063a9daa17a972589a73ab
--- /dev/null
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2008 ETH Zuerich, CISD
+ *
+ * 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.
+ */
+
+package ch.systemsx.cisd.openbis.generic.client.web.client.application;
+
+import com.google.gwt.core.client.EntryPoint;
+import com.google.gwt.user.client.ui.Label;
+import com.google.gwt.user.client.ui.RootPanel;
+
+/**
+ * 
+ *
+ * @author Franz-Josef Elmer
+ */
+public class Client implements EntryPoint
+{
+
+    public void onModuleLoad()
+    {
+        RootPanel.get().add(new Label("openBIS comong soon..."));
+
+    }
+
+}