It would mean one of your XML configuration files is using the tx namespace
but you haven't included it in the declaration at top.

The tx namespace is a Spring-specific namespace, and it is defined similar
to the following:

<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:p="http://www.springframework.org/schema/p";
       xmlns:tx="http://www.springframework.org/schema/tx";
       xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
       http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.0.xsd";>

(this includes extra namespaces that you may not need)

-Scott

On Dec 10, 2007 12:52 PM, Earnest Berry III <[EMAIL PROTECTED]> wrote:

> Hello,
> I am trying to connect CAS to MySQL, and I am getting the following
> errors:
>
> The prefix "tx" for element "tx:annotation-driven" is not bound. Caused
> by: org.xml.sax.SAXParseException:
>
> I am at a loss as to what this means? My config is per the documentation,
> nothing fancy. Did I miss a step though?
>
> - Earnest
>
> _______________________________________________
> Yale CAS mailing list
> cas@tp.its.yale.edu
> http://tp.its.yale.edu/mailman/listinfo/cas
>
>


-- 
-Scott Battaglia

LinkedIn: http://www.linkedin.com/in/scottbattaglia
_______________________________________________
Yale CAS mailing list
cas@tp.its.yale.edu
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to