so it should work like: <bean id="marshaler" class="com.mycompany.marhsler.MyHttpProviderMarshaler"> <property name="Method" value="POST" /> </bean> ?
cheers, Johannes
Actually the DefaultProviderMarshaler is already configured in the start() method. You can extend and override it with your own custom class to provide your own custom funcetionality. Then you'd configure it in the xbean.xml like so: <bean id="marshaler" class="com.mycompany.marhsler.MyHttpProviderMarshaler"> <property name="foo" value="blah" /> <property name="bar" value="blech" /> </bean> There is no providerMarshaler property. There's only a marshaler property. Bruce
