I think you need to instantiate RMManager and set your custom
generator there to have it picked up by the cxf bus.
something like
    <bean id="customIdGenerator" class="..."/>

    <bean id="rmManager" class="org.apache.cxf.ws.rm.RMManager">
        <property name="idGenerator" ref="customIdGenerator"/>
    </bean>


2015-10-21 13:36 GMT+02:00 kupkaj <[email protected]>:
> Hello,
>
> I would like to use custom id generator instead of default
> RMManager$DefaultSequenceIdentifierGenerator.
> The question is - how to configure (using spring) RM feature to use my class
> instead of the default one?
>
> Ideally, this configuration should take place on endpoint interceptor
> provider level (if that does not make sense - I want to replace id generator
> for specific service endpoint; currently I'm not configuring bus), or, if
> that's not possible, on bus configuration.
> Thanks for any advice.
>
>
>
> --
> View this message in context: 
> http://cxf.547215.n5.nabble.com/WSRM-changing-default-sequence-id-generator-tp5762033.html
> Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to