目前企业要求实现从内部管理系统上直接发送短信息,调用的是上海移动企信通empp.dll有那个朋友做过这方面的,可否提供源码一份,谢谢!
[email protected]

解决方案 »

  1.   

    参考看看:
    1、解决上海移动企信通的empp.dll的Com组件的问题
    http://blog.csdn.net/hz932/archive/2009/02/08/3868816.aspx2、用C#实现上海移动企信通的empp协议
    http://ykzj.spaces.live.com/Blog/cns!3671488A75030082!144.entry3、.net调用EMPP 组件问题
    http://topic.csdn.net/u/20080425/15/bab5430d-8256-481c-9646-ae0e9740ea76.html4、移动开发论坛:
    http://forum.csdn.net/PointForum/Forum/TopicList.aspx?Alias=Mobile_Platform&ListType=ClosedList&page=8
      

  2.   

    empp自带的Sample写的已经很详细了核心就这么几个事件
                connectResultEnum = empp.connect(m_strEmppServerIP, m_lEmppServerPort, m_strLogAccountId, m_strLogUserPwd);
                empp.SubmitRespInterface += new _IemptclEvents_SubmitRespInterfaceEventHandler(EvtSubmitResp1);            empp.MessageReceived += new _IemptclEvents_MessageReceivedEventHandler(empp_MessageReceived);
                empp.MessageReceivedInterface += new _IemptclEvents_MessageReceivedInterfaceEventHandler(empp_MessageReceivedInterface);            empp.StatusReceivedInterface += new _IemptclEvents_StatusReceivedInterfaceEventHandler(EvtStatusResp1);
                empp.StatusReceived += new _IemptclEvents_StatusReceivedEventHandler(empp_StatusReceived);            empp.SocketClosed += new _IemptclEvents_SocketClosedEventHandler(empp_SocketClosed);
      

  3.   

    CSDN有企信通开发C#版无非就是添加引用,调用方法