diff --git a/docs/manual/src/docbook/namespace-config.xml b/docs/manual/src/docbook/namespace-config.xml
index 0c8037576f..c612c78fb1 100644
--- a/docs/manual/src/docbook/namespace-config.xml
+++ b/docs/manual/src/docbook/namespace-config.xml
@@ -28,7 +28,8 @@
that are available. We would recommend that you try out the SpringSource Tool Suite as it
has special features for working with standard Spring namespaces.
- To start using the security namespace in your application context, all you need to do is
+ To start using the security namespace in your application context, you first need to make
+ sure that the spring-security-config jar is on your classpath. Then all you need to do is
add the schema declaration to your application context file:
+ http://www.springframework.org/schema/security/spring-security-3.0.3.xsd">
...
]]> In many of the examples you will see (and in the sample) applications, we
@@ -52,7 +53,7 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security
- http://www.springframework.org/schema/security/spring-security-3.0.xsd">
+ http://www.springframework.org/schema/security/spring-security-3.0.3.xsd">
...
]]> We'll assume this syntax is being used from now on in this chapter.