[digester] Decoding some complex namespace stuff

2021-02-17 Thread Christopher Schultz
All, I'm trying to parse n SAML response which, among other things, has arbitrary name/value pairs which look like this: http://www.w3.org/2001/XMLSchema; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:type="xs:string">attriute-value I'm using Digester 3.2 and

Re: [digester] Pass a static value to a CallParam rule?

2021-02-17 Thread Christopher Schultz
All, On 2/16/21 15:31, Christopher Schultz wrote: All, I'd like to invoke a method on the current top-of-the-stack object and pass a static string value to it, like this: digester.push(new MyBean()); digester.addCallMethod("/Foo/Bar", "setAttribute", 2, new Class[] { String.class });