[
Lists Home |
Date Index |
Thread Index
]
- To: xml-dev@lists.xml.org
- Subject: xml schema - validation of ip address against netmask
- From: Saurabh Arora <tanish2k@gmail.com>
- Date: Wed, 25 Jan 2006 10:33:30 +0100
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=cqb3HZJAt9zT8YyY0lcB9YfxkZcVg2XibTjkrwBHyPNmmeWHP1M29y3Yeem3zJh4b4U9FBjosxkdeP62wkIQcU34BzS2i4kNlzml1b54aruF+v8GQlmHfJaNJL/hstrY8XiQopW1Qcg5KhKXMPGkTIONhxaYhgYGbYt0ZgAGiYc=
- User-agent: Thunderbird 1.5 (Windows/20051201)
I am trying to validate the ip address of an interface (as an element
under the Schema definition) against the netmask value(as an attribute) :
like here:
<addr type="īpv4" netmask="255.255.255.0">192.168.1.1</addr>
now this is a line in the xml file and i need to validate the ip address
against the subnet mask.
like ip: 192.168.1.1 - class C
netmask: 255.255.255.0 - valid for class C
netmask: 255.255.255.255 -not valid for class C
how should i achieve it ?? i want to validate this process in my xml
schema document itself.
Tanish
|