public void Init(string url)
 {
     try
     {
         //url = "http://192.168.42.31:10001/?matchService.wsdl";
         m_server     = new WebReferencePic.IraWebservice();//webservice设置回档,使用配置文件方式,代码配置方式存在问题,在有的机器上接收8k以上数据
         m_server.Url = url;
     }
     catch (Exception ex)
     {
         throw new SDKCallException(1, ex.ToString());
     }
 }
 public void UnInit()
 {
     m_server = null;
     Sequence = 0;
     //Context  = 0;
 }