[solved] PayloadValidatingInterceptor doesn't validate unqualified attributes correct
Hi,
my schema defines some attributes in the root element.
If I configure the schema to use unqualified attribute names, the PayloadValidatingInterceptor identify the incoming messages as invalid.
If I configure the schema to use qualified attributes, it works with the Interceptor.
I already implemented an own interceptor class and used the javax.xml-Implementation of the xml validator.
There is the same behaviour.
When I use the javax.xml-validator or the spring-validator outside the webservice in a unit test and validates the payload against the schema, everything is ok (either with qualified or unqualified attributes).
So...
Why does the interceptor behaves different to a local implementation and "hates" my schema?
thx
edit forgot to say:
spring-ws-core-2.1.0.RELEASE
spring-xml-2.1.0.RELEASE
...