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.
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 🙁
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.
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 🙁