diff --git a/src/xercesc/validators/schema/SchemaSymbols.cpp b/src/xercesc/validators/schema/SchemaSymbols.cpp
index d376e4da064d1265c42de19062c14987df0c0991..fdb89da1950812e2d73fe9cccf419f6b972e1285 100644
--- a/src/xercesc/validators/schema/SchemaSymbols.cpp
+++ b/src/xercesc/validators/schema/SchemaSymbols.cpp
@@ -53,6 +53,7 @@ const XMLCh SchemaSymbols::fgURI_SCHEMAFORSCHEMA[] =
     chLatin_c, chLatin_h, chLatin_e, chLatin_m, chLatin_a, chNull
 };
 
+// deprecated (typo)
 const XMLCh SchemaSymbols::fgXSI_SCHEMALOCACTION[] =
 {
     chLatin_s, chLatin_c, chLatin_h, chLatin_e, chLatin_m, chLatin_a,
@@ -60,6 +61,7 @@ const XMLCh SchemaSymbols::fgXSI_SCHEMALOCACTION[] =
     chLatin_o, chLatin_n, chNull
 };
 
+// deprecated (typo)
 const XMLCh SchemaSymbols::fgXSI_NONAMESPACESCHEMALOCACTION[] =
 {
     chLatin_n, chLatin_o, chLatin_N, chLatin_a, chLatin_m, chLatin_e,
@@ -69,6 +71,22 @@ const XMLCh SchemaSymbols::fgXSI_NONAMESPACESCHEMALOCACTION[] =
     chLatin_n, chNull
 };
 
+const XMLCh SchemaSymbols::fgXSI_SCHEMALOCATION[] =
+{
+    chLatin_s, chLatin_c, chLatin_h, chLatin_e, chLatin_m, chLatin_a,
+    chLatin_L, chLatin_o, chLatin_c, chLatin_a, chLatin_t, chLatin_i,
+    chLatin_o, chLatin_n, chNull
+};
+
+const XMLCh SchemaSymbols::fgXSI_NONAMESPACESCHEMALOCATION[] =
+{
+    chLatin_n, chLatin_o, chLatin_N, chLatin_a, chLatin_m, chLatin_e,
+    chLatin_s, chLatin_p, chLatin_a, chLatin_c, chLatin_e, chLatin_S,
+    chLatin_c, chLatin_h, chLatin_e, chLatin_m, chLatin_a, chLatin_L,
+    chLatin_o, chLatin_c, chLatin_a, chLatin_t, chLatin_i, chLatin_o,
+    chLatin_n, chNull
+};
+
 const XMLCh SchemaSymbols::fgXSI_TYPE[] =
 {
     chLatin_t, chLatin_y, chLatin_p, chLatin_e, chNull
diff --git a/src/xercesc/validators/schema/SchemaSymbols.hpp b/src/xercesc/validators/schema/SchemaSymbols.hpp
index 85be9321f196896f3e222ccc1b5eb32ae0db6fe2..d501b765a934f080371bd5c381824f25ff567bbb 100644
--- a/src/xercesc/validators/schema/SchemaSymbols.hpp
+++ b/src/xercesc/validators/schema/SchemaSymbols.hpp
@@ -38,8 +38,12 @@ public :
     // -----------------------------------------------------------------------
     static const XMLCh fgURI_XSI[];
     static const XMLCh fgURI_SCHEMAFORSCHEMA[];
+    // deprecated (typo)
     static const XMLCh fgXSI_SCHEMALOCACTION[];
+    // deprecated (typo)
     static const XMLCh fgXSI_NONAMESPACESCHEMALOCACTION[];
+    static const XMLCh fgXSI_SCHEMALOCATION[];
+    static const XMLCh fgXSI_NONAMESPACESCHEMALOCATION[];
     static const XMLCh fgXSI_TYPE[];
     static const XMLCh fgELT_ALL[];
     static const XMLCh fgELT_ANNOTATION[];