在Web Service调用程序

来源:互联网 发布:程序员看不懂英文文档 编辑:程序博客网 时间:2024/05/16 17:40
[WebMethod]
  public string HelloWorld()
  {
   
   string m_strHost="10.12.34.101" ;
               
   Process process = new Process();
   process.StartInfo.FileName = "cmd.exe";
   process.StartInfo.UseShellExecute = false;
   process.StartInfo.RedirectStandardInput = true;
   process.StartInfo.RedirectStandardOutput = true;
   process.StartInfo.RedirectStandardError = true;           
   process.StartInfo.CreateNoWindow = true;
   string pingrst = string.Empty;
   process.StartInfo.Arguments = "ping " + m_strHost + " -n 1";
   process.Start();
   process.StandardInput.AutoFlush = true;
   string temp = "ping " + m_strHost + " -n 1" ;                   
   process.StandardInput.WriteLine(temp);               
   process.StandardInput.WriteLine("exit");           
   string strRst = process.StandardOutput.ReadToEnd();                               
   if(strRst.IndexOf("(0% loss)")!=-1)
    pingrst = "连接";
   else if( strRst.IndexOf("Destination host unreachable.")!=-1)
    pingrst = "无法到达目的主机";
   else if(strRst.IndexOf("Request timed out.")!=-1)
    pingrst = "超时";
   else if(strRst.IndexOf("Unknown host")!=-1)
    pingrst = "无法解析主机";
   else
    pingrst = strRst;
   process.Close();
   
   return pingrst+m_strHost;
  } 
原创粉丝点击