Creating a new server service

Can anyone point me to documentation on creating a new service within a plugin in WF?

I think I answered my own question…looks like I want to register a Component for this purpose - I was just confused by the name, i.e. Component vs. service.

Hey Jeff,

You are correct. When adding a component you have to register the subdomain that will be handled by the new component. That information is sent in the stream header when using external components. On the other hand, when using internal components that information is sent when registering the component:

InternalComponentManager.getInstance().addComponent(subdomain, component)

Regards,

– Gato