V
virtual
I have xml document like this:
<?xml version="1.0" encoding="UTF-8" ?>
<epp xmlns="urn:ietfarams:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietfarams:xml:ns:epp-1.0 epp-1.0.xsd">
<response>
<result code="2303">
<msg lang="pl">foo message</msg>
<value>
<name xmlns="domain">fooo.com</name>
</value>
<extValue>
<value>
<reasonCode xmlns="">9060</reasonCode>
</value>
</extValue>
</result>
</response>
</epp>
I can succesfully process with Xalan all its nodes, but this "weird" one:
<name xmlns="domain">fooo.com</name>
what the hell its namespace is?? in other words I need to know how looks the
"match" attribute for it ?
match="name"
match="domain:name"
.....
??
only match="*" can get it, but of course it is no solution
I have no idea to get this working ( Please help.
thx
<?xml version="1.0" encoding="UTF-8" ?>
<epp xmlns="urn:ietfarams:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietfarams:xml:ns:epp-1.0 epp-1.0.xsd">
<response>
<result code="2303">
<msg lang="pl">foo message</msg>
<value>
<name xmlns="domain">fooo.com</name>
</value>
<extValue>
<value>
<reasonCode xmlns="">9060</reasonCode>
</value>
</extValue>
</result>
</response>
</epp>
I can succesfully process with Xalan all its nodes, but this "weird" one:
<name xmlns="domain">fooo.com</name>
what the hell its namespace is?? in other words I need to know how looks the
"match" attribute for it ?
match="name"
match="domain:name"
.....
??
only match="*" can get it, but of course it is no solution
I have no idea to get this working ( Please help.
thx