* Description: register session server with service name = ""<br>
* Expectation: throws SCServiceException
*/
@Test (expected = SCServiceException.class)
public void t203_register() throws Exception {
server = new SCServer(TestConstants.HOST, TestConstants.PORT_SC0_HTTP, TestConstants.PORT_SES_SRV_HTTP, ConnectionType.NETTY_HTTP);
server.startListener();
sessionServer = server.newSessionServer("");
SCSessionServerCallback cbk = new SesSrvCallback(sessionServer);
sessionServer.register(1, 1, cbk);
}