wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.vci.server;
 
import com.vci.common.ServiceNames;
import com.vci.server.omd.OMDServiceImpl;
 
 
public class OMDServiceMain extends ServiceManager {
 
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println("");
        System.out.println("\t***************************************************************");
        System.out.println("\t* VCI-Platform OMDService V2024 www.vci-tech.com              *");
        System.out.println("\t* (C)Beijing Hongbo Yuanda Sciense and Technology Co. , Ltd.  *");
        System.out.println("\t***************************************************************");
        System.out.println("");
        
        System.setProperty("user.timezone", "GMT+8");
 
        OMDServiceMain server = new OMDServiceMain();
        
        //server.bindService(ServiceNames.OMDSERVICE, new OMDServiceImpl() );
    }
 
}