I have common01.xsd (namespace like http://test/common/01) and common02.xsd (namespace like http://test/common/02). Now i merged both xsd into single and come up with common.xsd(namespace like http://test/common).
Now my new request is working fine new name space (namespace like http://test/common). But in-flight payload (like store in queue & processed after deployed new code) having request with referring old xsd's namespace as well (failed). My inflight requst get failed due to namespace issue.
How to resolve this issue. I want handle all namespace with my latest common.xsd.
like similar like Spring.schemas & Spring.handler.
Any suggestion and good example to handle these case.