|
From: Taras T. <mai...@gm...> - 2007-05-08 18:05:54
|
Winterfeldt, David (IT) wrote: > I'm not sure if this would have been more appropriate for the user list > or not. If it is, please let me know and I will resend to that list. > > I'm using version Spring 2.0.3. I'd like to delegate parsing from > within a custom parser back to the default Spring beans parsing to > leverage default Spring functionality. > > <mesh:process-remote id="testRemote"> > <property name="sender"><ref local="helloServiceSender"/></property> > </mesh:process-remote> > > When I call parserContext.getDelegate().parseCustomElement(element, > builder.getBeanDefinition()) in my custom parser, I get an exception. I assume you want to use something like: ---- parserContext.getDelegate().parsePropertyElement(element, definition) ---- -tt |