im trying to find out whether following case is allowed:
Lets say I have following XSD:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xyz="http://www.example.com/abc"
targetNamespace="http://www.example.com/abc"
elementFormDefault="qualified" attributeFormDefault="qualified">
Does the following XML uses the correct namespace? (Please consider the namespace only):
<?xml version="1.0" encoding="UTF-8"?>
<def:whatever xmlns:def="http://www.example.com/abc">
<def:adress="Street 1">
...