|
Hello, I want to pass a parameter to my sax filter to only output a subtree of xml where I see a particular attribute value. For instance the xml looks like...
<clients>
<client name="my client 1">
blah blah
</client>
<client name="my client 2">
blah blah blah
</client>
</clients>
So I want to pass "my client 2" to the filter. How can I do this?
|