From: <ale...@jb...> - 2005-04-29 12:41:03
|
That's because of this change | <?xml version="1.0" encoding="UTF-8"?> | -<deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | +<deployment> | + <!--xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xsi:schemaLocation="urn:jboss:xml-deployer xml-deployer_1_0.xsd" | - xmlns="urn:jboss:xml-deployer"> | + xmlns="urn:jboss:xml-deployer"--> | <bean name="SimpleBean1" | class="org.jboss.test.xml.pojoserver.SimpleBeanImpl"> | <property name="aList"> Now the qualified name of the deployment element is QName("deployment"), not QName("urn:jboss:xml-deployer", "deployment") which is used in the schema binding. So, it is just not recognized. BTW, currently, in the XSD all attributes belong to the default/empty namespace, not the urn:jboss:xml-deployer. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875904#3875904 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3875904 |