Program to test Siebel CRM connectivity, Integration

package project1;

import com.siebel.data.SiebelBusComp;
import com.siebel.data.SiebelDataBean;
import com.siebel.data.SiebelException;
    import com.siebel.data.*;
    import com.siebel.data.SiebelException;

 
    public class Class1 {
    public static void main (String args[])
    {
    System.out.println(“This is a test”);
    SiebelDataBean m_dataBean=null;
    SiebelBusComp m_busObject=null;
    try
    {
        System.setProperty(“file.encoding”,”UTF8″);
    m_dataBean=new SiebelDataBean();
    m_dataBean.login(“siebel://IP:2321/SBA_80/SCCObjMgr_enu”, “SADMIN”,”SADMIN”,”enu”);
    System.out.println(“Successfully connected to Siebel CallCentre Object Manager”);
    }
    catch (SiebelException e)
    {
    System.out.println(“ERROR:”+e.getErrorMessage());
    }
    }
    }


Posted

in

,

by

Tags: