" xmlns='http://www.jboss.org/test/xml/snorm'" +
" attr=''"&><'><>&"'</person>";
String lastName = "<>&\"'";
String firstName = "'\"&><";
SchemaBinding schema = XsdBinder.bind(new StringReader(xsd), null);
Unmarshaller unmarshaller = UnmarshallerFactory.newInstance().newUnmarshaller();
Object unmarshalled = unmarshaller.unmarshal(new StringReader(xml), schema);
assertNotNull(unmarshalled);
assertTrue(unmarshalled instanceof Person);
Person person = (Person)unmarshalled;