473,812 Members | 2,854 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MS message queue question

I've been reading about message queues (ex
http://www.devx.com/dotnet/Article/27560) and I thought I had installed the
message queue from the IIS install, and I can see it running in Services,
but when I goto look at it under the MMC tool under Applications, it's not
there? Am I doing something wrong? Does it not show up in there, unless I
add messages to the queue?

Thanks.
Jul 21 '05 #1
7 1626
it will show up under services because it is a service

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:uW******** ******@tk2msftn gp13.phx.gbl...
I've been reading about message queues (ex
http://www.devx.com/dotnet/Article/27560) and I thought I had installed
the message queue from the IIS install, and I can see it running in
Services, but when I goto look at it under the MMC tool under
Applications, it's not there? Am I doing something wrong? Does it not
show up in there, unless I add messages to the queue?

Thanks.

Jul 21 '05 #2
> it will show up under services because it is a service
Hi Alvin. Yes, I see it under Control Panel, Services, which leads me to
believe it's running and working properly. I was just wondering now that I
know it's running, how do I administer it? Or maybe I just misunderstand
the queueing thing? In WebLogic you can admin it through their console,
which I thought I could see something similar in the MMC for IIS. Not the
case here? Can you tell I'm new to this? :< Sorry if the questions are
bit noob or confused.

Thanks.
Jul 21 '05 #3
control panel > computer management > services and applications. From there
you can right-click on the particular service and set some options etc

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:u0******** ******@TK2MSFTN GP10.phx.gbl...
it will show up under services because it is a service

Hi Alvin. Yes, I see it under Control Panel, Services, which leads me to
believe it's running and working properly. I was just wondering now that
I know it's running, how do I administer it? Or maybe I just
misunderstand the queueing thing? In WebLogic you can admin it through
their console, which I thought I could see something similar in the MMC
for IIS. Not the case here? Can you tell I'm new to this? :< Sorry if
the questions are bit noob or confused.

Thanks.

Jul 21 '05 #4
> control panel > computer management > services and applications. From
there you can right-click on the particular service and set some options
etc

That's what I mean, what happens if there's no message queue listed there?
What could I be doing wrong? Is this even possible? I can see the message
queue in the Services window, but not in here. :<

Thanks.
Jul 21 '05 #5
that simply means the queue isn't installed correctly and will misbehave.
i'd suggest you uninstall first and then do a fresh install of the queue to
fix this.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:uk******** ******@tk2msftn gp13.phx.gbl...
control panel > computer management > services and applications. From
there you can right-click on the particular service and set some options
etc

That's what I mean, what happens if there's no message queue listed there?
What could I be doing wrong? Is this even possible? I can see the
message queue in the Services window, but not in here. :<

Thanks.

Jul 21 '05 #6
> that simply means the queue isn't installed correctly and will misbehave.
i'd suggest you uninstall first and then do a fresh install of the queue
to fix this.

Darn, I thought that's what it could be, but was hoping for something
better. Oh well, thanks for confirming! :>
Jul 21 '05 #7
hey, i'm just the bearer of bad news :-)

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:O$******** ******@TK2MSFTN GP15.phx.gbl...
that simply means the queue isn't installed correctly and will misbehave.
i'd suggest you uninstall first and then do a fresh install of the queue
to fix this.

Darn, I thought that's what it could be, but was hoping for something
better. Oh well, thanks for confirming! :>

Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2628
by: Rodrigo García | last post by:
Hi. The problem is a bit hard to explain. I have a ServicedComponent method which runs a distributed transaction consisting on a a MessageQueue reception and several database operations. That ServicedComponent method is called from a pool of threads which get blocked in the Receive method of the queue. At that moment there are as many open transactions in the DTC as the number of threads in the pool. After 60 seconds of inactivity the...
2
1877
by: Gvs | last post by:
Hi, I'm currently trying to pass messages into a queue. This all works fine, however, i'm trying to my program to stop sending messages to the queue when it reaches an upper threshold. At present this threshold is the number of chairs in a waiting room. This is an int represented by nChairs. So i want to compare this to the number of messages in my queue. I'm using the following lines of code to do this, however the queue is always...
0
1071
by: Kimmo Laine | last post by:
Hi, i have the a test app ( Sender ) with 3 buttons: first will open/create queue, second will send the message and third will close the queue. Here is the code private void cmdOpen_Click(object sender, System.EventArgs e) { const string QNAME = @".\private$\MyTestQueue"; if( m_Queue == null ) { if( MessageQueue.Exists( QNAME ) ) {
0
2137
by: Marcus | last post by:
Hello All, I am trying to create a private MSMQ message queue on a remote application server from an asp.net application using the following code: Dim queue As MessageQueue queue = MessageQueue.Create("FormatName:DIRECT=OS:AppServer\private$\" & Me.TextBox1.Text)
7
274
by: Flip | last post by:
I've been reading about message queues (ex http://www.devx.com/dotnet/Article/27560) and I thought I had installed the message queue from the IIS install, and I can see it running in Services, but when I goto look at it under the MMC tool under Applications, it's not there? Am I doing something wrong? Does it not show up in there, unless I add messages to the queue? Thanks.
19
6257
by: ern | last post by:
I need a FIFO queue of size 20, to keep track of a running average. Once the queue is full with 20 values, I want to take the sum/20 = AVERAGE. Then when a new value comes in, I want: (Old Sum - oldest value + newest value)/20 = New Average Anybody know an efficient way to implement that? Is a queue even the best way? Thanks,
6
16721
by: les | last post by:
Here's a class which uses 2.0 generics to implement an inter-thread message queue in C#. Any number of threads can post and read from the queue simultaneously, and the message object can be any type. There's a test driver at the bottom which demonstrates usage. /*-----------------------------------------------------------------------------------------------------*/ using System; using System.Collections.Generic;
1
3912
by: Andrew Robert | last post by:
Hi everyone, Could someone help explain what I am doing wrong in this code block? This code block is an excerpt from a larger file that receives transmitted files via IBM WebSphere MQSeries an drops it to the local file system. Transmission of the file works as designed but it has a flaw.
3
5015
by: Ahmad Jalil Qarshi | last post by:
Hi, I have developed an application in C on IBM AIX 5.2. Its using multiple Message Queues to share data between different processes. I am using following functions to send/receive messages into/from message queues: int msgget(key_t, int); ssize_t msgrcv(int, void *, size_t, long int, int); int msgsnd(int, const void *, size_t, int);
0
9734
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10401
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10416
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10138
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9217
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7676
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5567
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5704
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3881
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.