İçeriğe geç

2 Yorum

  1. efe efe

    Merhaba Fatih bey.İki sorum olacaktı: Birincisi : Bilgisayarımıza MSMQ kurulu olup olmadığını C# kodları ile nasıl anlayabiliriz.
    İkincisi : Hangi queue in connect olup olmadığını nasıl anlayabiliriz, tabi yine C# kodları ile.
    Teşekkür ederim.

  2. efe efe

    msmq kurulumunu buldum sonunda merak edenler için :

    public string checkMsmq()
    {
    string strMsmq = “–>Message Queuing has installed on this computer.”;
    try
    {
    MessageQueue.Exists(@”.\Private$\MyQueue”);
    }
    catch (Exception ex)
    {
    return strMsmq=”–>Message Queuing has not been installed on this computer.”;
    }
    return strMsmq;
    }
    Eğer Exception alınırsa MSMQ kurulu değildir. 🙂
    Diğer sorumun cevabını halen daha bulamıyorum 🙁

Bir yanıt yazın