Dear friends, I have Installed MSMQ server On my Corporate and Branches.The brances have Direct connectivity with my corporate office.Also we have branches...
Will they connect periodically or never ? If they connect periodically, you can use Independent clients, else you can enable Routing Services. See docs for...
You can use RPC to communicate with MSMQ but this will be complicated and you would be using APIs that are not documented and may change or even go away. You...
Keith Schaab
keithsc@...
Jan 3, 2003 7:08 pm
3066
It is possible to communicate to any MSMQ version from any other. It is also possible to set up one MSMQ version client against a different versioned server....
Keith Schaab
keithsc@...
Jan 3, 2003 7:13 pm
3067
Nithin, You can install MSMQ in the branches that have no direct connectivity with corporate. There are two things you must keep in mind for this. MSMQ must...
Keith Schaab
keithsc@...
Jan 3, 2003 7:18 pm
3068
If I would like to connect to someone who uses IBM's MQ Adapter, do I need the MQ-Series Bridge? Thanks. Drew A. Lukac EDI Programmer Analyst Technical Support...
MQ Series bridge is to connect MSMQ with MQ Series queues. I'm not sure what the MQ adapter is or if you mean MQ Series itself. If you want to write a MSMQ...
Keith Schaab
keithsc@...
Jan 3, 2003 7:35 pm
3070
Keith, could you pls suggest some links about Enabling Routing services Regards Nithin Keith Schaab <keithsc@...> wrote: Nithin, You can install MSMQ...
hi Some of the branches will connect to regional office. At that time they may not be a connection from Regional office to Corporate office. for enabbling...
thanks a lot.........Tabassum ... complicated ... or ... your ... at ... receiving ... to ... if ... also ... be ... from ... component ... following ... Q's ...
In order to use routing services you need to use AD. Otherwise there is no way for MSMQ to know how to route the message. _____ From: Nithin Balakrishnan...
Keith Schaab
keithsc@...
Jan 6, 2003 5:42 pm
3074
but its a resourse consuming thing.right? do you have any documents about installing ant configuring Routing links. if there pls give me it wil be helpfull ...
Not sure what you mean by resource consuming. Of course MSMQ AD queries are going to consume resources just as any other AD provider. Routing is covered in...
Keith Schaab
keithsc@...
Jan 7, 2003 12:52 am
3076
As it pertains to a clustered environment, is there a difference between using Private vs. Public queues?...
No, there is no difference, both will write to the same storage drive therefore will be available during failover. ________________________________ From:...
Keith Schaab
keithsc@...
Jan 7, 2003 5:31 am
3078
Current I have an application that utilizes queued components. The application performs exactly as expected other then when it comes to message priority. No...
Priority is set to 0 automatically for transactional messages. This is probably what you are hitting, is your component marked as transactional? ... From:...
Keith Schaab
keithsc@...
Jan 7, 2003 11:08 pm
3080
Hello, I would like to transfer SAFEARRAY via MSMQ. But it doesn`t work - the message always has 16B, this is just some metadata of variant? safearray? In the...
Well, I've just found that I can only transfer VT_ARRAY | VT_UI1 via MSMQ message... Is there some easy way of how to transform VT_ARRAY | VT_VARIANT into...
Currently the component is set to transactions support "Not Supported". I'm going to try "Disabled" and see what happens. Paul ... This is ... to ... when ......
I have tried disabled with no change. Any ideas? Paul ... The ... comes ... via ... queue:Priority=6,FormatName=DIRECT=OS:CompName\PRIVATE$\COMPlusAppNam...
Check the queue itself and see if it's marked as transactional. ... From: paulgyro <paul_widner@...> [mailto:paul_widner@...] Sent: Thursday,...
Keith Schaab
keithsc@...
Jan 9, 2003 6:29 pm
3085
You cannot attach a SAFEARRAY directly. Here's my wonderful (not biased I'm sure) stupendous little sample that will allow you to do whatever you want and...
Keith Schaab
keithsc@...
Jan 9, 2003 7:31 pm
3086
When I look at the queue itself it says it's a "Transactional queue". How do I make it a non-transactional queue? There are no options to change it in the...
Queue is defined as transactional or not at the creation time, and it cannot be changed later. You will have to delete the queue and create another one with...
Sasha Dadiomov
alexdad@...
Jan 9, 2003 8:49 pm
3088
Ah yes but when you are using Queued Components the queues are created for you. Paul ... it cannot be changed later. You will have to delete the queue and ...
Paul, This doesn't matter, you can recreate the queue. If the automatically created queue is marked as transactional this means that you marked the component...
Keith Schaab
keithsc@...
Jan 10, 2003 5:53 am
3090
I am creating Private Message Queues using a Service. I am always getting error message "Permission Denied", when i am trying to read messages from message...
could you send a copy of mqoa.dll to me from shameer...
Shameerudheen.P.T. <s...
shameeru@...
Jan 10, 2003 6:25 am
3092
Thank you, Keith. I changed my design and now I use binary slots for all message parts and before sending, in the final step I prepare one big SAFEARRAY(BYTE);...