[205733] Content assist fails when editing web.xml or faces-config.xml in XML Editor (2)
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/FileBufferModelManager.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/FileBufferModelManager.java
index fc04743..253b322 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/FileBufferModelManager.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/FileBufferModelManager.java
@@ -423,7 +423,7 @@
 		IPath bufferLocation = info.buffer.getLocation();
 		boolean isOK = true;
 		try {
-			bufferManager.connect(bufferLocation, LocationKind.NORMALIZE, null);
+			bufferManager.connect(bufferLocation, info.locationKind, null);
 		}
 		catch (CoreException e) {
 			Logger.logException(e);
@@ -530,7 +530,7 @@
 		IPath bufferLocation = info.buffer.getLocation();
 		boolean isOK = true;
 		try {
-			bufferManager.disconnect(bufferLocation, LocationKind.NORMALIZE, null);
+			bufferManager.disconnect(bufferLocation, info.locationKind, null);
 		}
 		catch (CoreException e) {
 			Logger.logException(e);