A service id is an integer which uniquely identifies each CORBA service.
A sub-service id is a service id as returned to a client. When the client contacts that service, the service knows which client is making the invocations. This is useful with multiple publishers.
The Unknown Service ID is encountered when a subscriber invokes a ping request using an object reference that is no longer valid for whatever channel the subscriber is pinging. Since this is no longer a valid object reference on the channel server side, the channel server replies with an IDL:omg.org/CORBA/OBJECT_NOT_EXIST:1.0 which the subscriber interprets as an unknown service ID. If you examine the channel server log, you should see the subscriber being reconnected to the channel immediately after this exception is thrown. If you do not see this, then this is a problem. If you do see it reconnect and the subscriber receives events as expected, then disregard this exception as it is perfectly normal behavior.
How to fix these errors:
1. Modify the "Number of threads" Chanserv thread setting. This is under local/chanserv , Communicator Server Tab. The default value 8. The channel server doesn't typically need more than 20 or 30 threads max . But if you still get the errors you can increase it to higher number
2.Increase the "Wait Limit" on the channels to which the component is subscribing, Use an incremental approach , incrementing by 10 seconds and test everytime to see if the value is OK or not.
3. Increase the number of components threads. i.e. For automator This is in the "Server Initialization and Startup/Startup/Thread Number" property of the automator server.
The general guideline is:
(concurrency * number of channels) + number of channels + ( at least 5 additional threads for orb dispatching) + (1 for LicenseChecker ).
If this is not enough , then you can further incrementally increase the thread number, and test to see if this is OK.
The caveat is the suggestions above work if you're seeing disconnects and reconnects, in which case Unknown Service ID is normal behavior, and the subscriber is taking a very long time to process. If it's not reconnecting, then you need to figure out why the connection model/automator server/third party application is hanging indefinitely or not reconnecting. It may be something as simple as adding a RestartOn to a connection model.
=====================================================================