injection and remote functions

I’m moving from 3.8 to 4.3 and doing the refactoring of my code and I’ve run into a speedbump. I’m trying to remotely call a function that uses the XMLConverter. I’m doing the injection it like this.

property name=“XMLConverter” inject=“model:xmlConverter@coldbox”;

but the function is telling me that XMLConverter can’t be found.

I used to have to call autowire:

application.wirebox.autowire( this );

but the docs say this was dropped. Any suggestions?

Thanks.

Jonathan