Re: WMQI : Running Two Versions of Control Center, is it possible?

2003-10-14 Thread Tibor
Jeff,

This is possible, look this topic:

http://www.mqseries.net/phpBB2/viewtopic.php?t=9885highlight=CC

Of course, Frank is right - officially...

Tibor



 Jeff,

Is it possible to run the Control Center of both versions on
the same computer?

 No. In fact, the install of the WBI MB V5 toolkit will fail if it detects
 that the WMQI Control Center is currently installed.

 Regards,

 Christopher Frank
 Sr. I/T Specialist - IBM Software Group
 IBM Certified Solutions Expert - Websphere MQ  MQ Integrator
 
 Phone: 612-397-5532 (t/l 653-5532) mobile: 612-669-3008
 e-mail: [EMAIL PROTECTED]

 Instructions for managing your mailing list subscription are provided in
 the Listserv General Users Guide available at http://www.lsoft.com
 Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Handling Database down period in WMQI

2003-10-14 Thread Robert Broderick
We had this same condition at a client. We caught the exception and parsed
the exception for certain database errors. What you have to watch out for is
when the DB comes back online. The first message gets a different error that
still implies the DB is unavailable. (WIERD) But WMQI throws an error. So
you have messages of type:
1 - Database unavailable
2 - Connection unavailable
3 - All other Database errors
When we got 1  2 we wrote a message to a queue that triggered a script to
GET DISABLE the queue. (Here I'm a little fuzzy). We had another script
which reset the GET to EABLE. THis can be started by the Database Backup
process.
  bobbee


From: Jas Singh [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Handling Database down period in WMQI
Date: Fri, 10 Oct 2003 11:58:04 -0500
We are developing message flows in IBM Websphere MQ Integrator (WMQI),
Message flows are using Databases for Lookup and Write operations
extensively .
The database is shutdown for backup every night for 2 hrs and we need to
build a functionality
that the messages remain in the INPUT queue until the database is up and
running .
Option such as backout count or try catch do not suite our purpose as this
a normal process we do not want to treat this as an error .
Is there any good way of achieving this in Message flow

Thanks
-Jas


*Internet Email Confidentiality*

This communication may contain privileged or other confidential
information.  If you are not the intended recipient, or believe that you
may have received this communication in error, please reply to the sender
indicating that fact and delete the copy you received.  In addition, you
should not print, copy, retransmit, disseminate, or otherwise use the
information contained in this communication. Thank you.
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Surf and talk on the phone at the same time with broadband Internet access.
Get high-speed for as low as $29.95/month (depending on the local service
providers in your area).  https://broadband.msn.com
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Acronym???

2003-10-14 Thread Robert Broderick
WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)

   bobbee

_
Concerned that messages may bounce because your Hotmail account has exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread ChandraSekhar Puranapanda
May be it is Inter Change Server 

WICS - WebSphere Inter Change Server. 
It is CrossWorlds.

Rgds
Sekhar  


-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 14, 2003 6:14 PM
To: [EMAIL PROTECTED]
Subject: Acronym???

WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Hill, Dave
Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS is a good one 
too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


bobbee

_
Concerned that messages may bounce because your Hotmail account has exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: CopyBook with Occurs Clause

2003-10-14 Thread Jim Keohane


 Justa guess but try:



01 MYCOMPOUND_ELEMENT.

05 HOW-MANY PIC 99.

88 WITHIN-RANGE VALUE ZERO THRU 3.

05 MYREPEAT_ELEMENT OCCURS 3 TIMES DEPENDING ON HOW-MANY.

10 TEST-ELEM PIC X(2). 

 Then send '00' or '01AB' or '02AB12' or
'03AB12XY'
 I've written COBOL copybook parsers for a few vendors
that generate XML schemas or Java descriptions and provided for such
variability. In fact, wouldja believe Complex ODO's? An ODO is an OCCURS
DEPENDING ON clause. Complex ODO's are ODO's subordinate to other ODO's
so that offsets need to be calculated for these (and later) fields using
one, two or more count fields earlier/lower in copybook/structure.
- Jim Keohane

At 00:34 2003-10-14, you wrote:


Hi,

I have the following COBOL copy book imported into WMQI 2.1 CSD
5.

01 MYCOMPOUND_ELEMENT.

05 MYREPEAT_ELEMENT OCCURS 3 TIMES.

10 TEST-ELEM PIC X(2). 

CWF properties , Min Occurs and Max Occurs is set to 3. I modified
min occurs to 1.

If I send a AB12XY , it works fine. But if I send only the first set
, i.e. AB , I get an error that says , message too short. It always seems
to expect the max. Is it expected to send always a fixed length even with
Occurs clause? 

I could have used the depending clause , but that would mean I get
the count from the sending application or have some logic that will
populate the count. 

Does WMQI expect a fixed length equal to the max occurs whenever I
use a CWF , or is it rectified with some CSD?



Do you Yahoo!?
The
New Yahoo! Shopping - with improved product search



Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread John Scott
It stands for InterChange Server and I think it's the new name for
Crossworlds...

Regards
John Scott
IBM Certified Specialist - MQSeries
Argos Ltd


-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: 14 October 2003 12:44
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


bobbee

_
Concerned that messages may bounce because your Hotmail account has exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in the
Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


***

Click here to visit the Argos home page http://www.argos.co.uk

The information contained in this message or any of its attachments may be privileged 
and confidential, and is intended exclusively for the addressee.
The views expressed may not be official policy, but the personal views of the 
originator.
If you are not the addressee, any disclosure, reproduction, dissemination or use of 
this communication is not authorised.
If you have received this message in error, please advise the sender by using the 
reply facility in your e-mail software.
All messages sent and received by Argos Ltd are monitored for virus, high risk file 
extensions, and inappropriate content.  As a result users should be aware that mail 
maybe accessed.

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Luc-Michel Demey
hi,

could be InterChange Server.

HTH, LMD.


Date sent:  Tue, 14 Oct 2003 08:43:33 -0400
Send reply to:  MQSeries List [EMAIL PROTECTED]
From:   Robert Broderick [EMAIL PROTECTED]
Subject:Acronym???
To: [EMAIL PROTECTED]

 WBI / ICS

 I get the WBI!!

 What is ICS?? (Is that a Croosworlds reference??)


 bobbee

 _
 Concerned that messages may bounce because your Hotmail account has exceeded
 its 2MB storage limit? Get Hotmail Extra Storage!
 http://join.msn.com/?PAGE=features/es

 Instructions for managing your mailing list subscription are provided in
 the Listserv General Users Guide available at http://www.lsoft.com
 Archive: http://vm.akh-wien.ac.at/MQSeries.archive


--
Luc-Michel Demey - Freelance EAI Consultant
Paris / France Tel. : +33 6 08 755 655
http://consulting.demey.org/ - lmd at demey dot org

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Error creating Key Repository on WMQ5.3 CSD4

2003-10-14 Thread philip . distefano
Well, I've never used the -expire parameter, but all the other parms are
OK.   Since you're creating the kdb, make sure it does not exist prior to
executing the command.  Also, all the path info is valid.





   
   
  Rodríguez   
   
  Alvarez-Querol,  To:   [EMAIL PROTECTED] 
 
  Manuel Carlos   cc: 
   
  [EMAIL PROTECTED]Subject:  Error creating Key 
Repository on WMQ5.3 CSD4 
  E.COM   
   
  Sent by: MQSeries
   
  List 
   
  [EMAIL PROTECTED]   

  n.AC.AT 
   
   
   
   
   
  10/13/2003 04:27 
   
  AM   
   
  Please respond to
   
  MQSeries List
   
   
   
   
   




I am trying to configure the SSL in WMQ 5.3 CSD4 in an AIX 4.3.3. I execute
the followind command to create the key repository
gsk6cmd -keydb -create -db /var/mqm/qmgrs/MAPD01/ssl/key.kdb -pw ibm -type
cms -expire 365 -stash

and got an error indicating Invalid key database type was found.

Any idea how to solve this?

TIA

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive





This communication is for informational purposes only.  It is not intended as
an offer or solicitation for the purchase or sale of any financial instrument
or as an official confirmation of any transaction. All market prices, data
and other information are not warranted as to completeness or accuracy and
are subject to change without notice. Any comments or statements made herein
do not necessarily reflect those of J.P. Morgan Chase  Co., its
subsidiaries and affiliates.

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


AW: Antwort: AMQ4128 ??

2003-10-14 Thread Fleck, Michael
Hi Roland,

I have deleted the channel initiator and rebooted the server. The channel initiator 
was created and is running.
But our problem is a different one. We want to stop the Queue Manager with endmqm 
from a scheduler on a regular basis to do backups of the MQ - directories. After this 
we want to start the Queue Manager again.

So I stopped the Queue Manager again before doing my backups. After this the channel 
initiator doesn't start again with strmqm. If I try to do this manually, the AMQ4128 
appears again.

Any ideas how to stop and start the queue manager on a regular basis?

Best regards,
Michael 

-Ursprüngliche Nachricht-
Von: Roland Duenki [mailto:[EMAIL PROTECTED] 
Gesendet: Freitag, 10. Oktober 2003 15:49
An: [EMAIL PROTECTED]
Betreff: Antwort: AMQ4128 ??

Hi,

Sometimes, the channel initiator is running but it is not shown in in the mq services 
tool. (It usually happens to me right after creating a new qmgr.) If you add a new 
channel initiator by using this tool under this circumstances, then the tool gets 
confused by the already existing channel initiator. by trying to start the same 
initiator again, you get rc=20.

To correct the mq services entries, do this: delete the channelinitiator entry. 
reboot. check your tool again. when initiator is back again: everything ok. if not. 
add it and start it.

Roland




Hi list members,
I stopped a queue manager from the commandline using endmqm -i qmgr. After this I 
started it again using strmqm qmgr. Everything seems to be fine, but when I looked 
at the Mq-Services Utility I saw that the Channel Initiator was still stopped. When I 
try to start it manually I get Error AMQ4128 with rc=20. Any ideas?

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Error creating Key Repository on WMQ5.3 CSD4

2003-10-14 Thread Pavel Tolkachev
Hi TIA,

One more thing to check: on AIX 4.3.3, make sure you have the latest C++ runtime 
(xlC.aix43.rte) to use gsk. (I beleive, you need something like 6.0.0.2 or later or 
even 6.0.0.4 or later). To make sure you are safe, Install the latest. This should 
have been checked by the package, but the package I had only required 3.something. I 
brought this to the attention of IBM support but I am not sure it went anywhere -- 
they helped me to solve my problem and I selfishly stopped fighting entropy :-).

Hope this will help,
Pavel






   
 
  [EMAIL PROTECTED]

  PMCHASE.COM   To:   [EMAIL PROTECTED]
   
  Sent by: MQSeries cc:
 
  List  Subject:  Re: Error creating Key 
Repository on WMQ5.3 CSD4  
  [EMAIL PROTECTED]   
 
  .AC.AT  
 
   
 
   
 
  10/14/2003 09:13 
 
  AM   
 
  Please respond to
 
  MQSeries List
 
   
 
   
 




Well, I've never used the -expire parameter, but all the other parms are
OK.   Since you're creating the kdb, make sure it does not exist prior to
executing the command.  Also, all the path info is valid.






  Rodríguez
  Alvarez-Querol,  To:   [EMAIL PROTECTED]
  Manuel Carlos   cc:
  [EMAIL PROTECTED]Subject:  Error creating Key 
Repository on WMQ5.3 CSD4
  E.COM
  Sent by: MQSeries
  List
  [EMAIL PROTECTED]
  n.AC.AT


  10/13/2003 04:27
  AM
  Please respond to
  MQSeries List






I am trying to configure the SSL in WMQ 5.3 CSD4 in an AIX 4.3.3. I execute
the followind command to create the key repository
gsk6cmd -keydb -create -db /var/mqm/qmgrs/MAPD01/ssl/key.kdb -pw ibm -type
cms -expire 365 -stash

and got an error indicating Invalid key database type was found.

Any idea how to solve this?

TIA

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive





This communication is for informational purposes only.  It is not intended as
an offer or solicitation for the purchase or sale of any financial instrument
or as an official confirmation of any transaction. All market prices, data
and other information are not warranted as to completeness or accuracy and
are subject to change without notice. Any comments or statements made herein
do not necessarily reflect those of J.P. Morgan Chase  Co., its
subsidiaries and affiliates.

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive





--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.

Instructions for managing your mailing list subscription are provided in
the Listserv 

Re: SSL and 531 Install

2003-10-14 Thread Rick Tsujimoto





Dave,

What sort of problems are you having?



   

  Williams, Dave  

  (Systems To:  [EMAIL PROTECTED]  
  
  Management) cc: 

  [EMAIL PROTECTED] Subject: SSL and 531 Install  
  
  COM 

  Sent by: 

  MQSeries List

  [EMAIL PROTECTED]   
  
  en.AC.AT

   

   

  10/13/2003 03:06 

  PM   

  Please respond   

  to MQSeries List 

   

   




Has anyone installed MQ531 (OS390)? Im having a small issue w/the
statement regarding SSL path.


Thanks,


Dave




'²ÚîržÇè®f§j§ƒ*.®f¢–)à–+-²æìr¸©¶*'j·©®‹âuçbžØ^.+-±êïé©T±êìèy«V›•Ûiÿü0Â[(~×(˜
+ÛiÿûæjHp‰éÚq«1ž®'¬j·!Š÷

Re: Acronym???

2003-10-14 Thread Saraswathy A
there is a good redbook that talks about the WBI product positioning 
http://publib-b.boulder.ibm.com/Redbooks.nsf/RedbookAbstracts/sg246849.html?Open.U may 
want to look at only Chapter four b4 your 11.30 meeting!

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 6:46 PM
To: [EMAIL PROTECTED]
Subject: Re: Acronym???


I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to be
an EXPERT for an 1130AM meeting!!


bobbee


From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


 bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service.  Try it FREE for one month!   http://join.msn.com/?page=dept/dialup

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Dave Adam

in what year is this meeting

Dave Adam
Supervalu Home Office
Project Specialist
(952) 828-4736
[EMAIL PROTECTED]

Signs of dyslexia are starting to surface
Like when I started drinking at the age of 12
--







Robert Broderick [EMAIL PROTECTED]
Sent by: MQSeries List [EMAIL PROTECTED]
10/14/2003 08:16 AM
Please respond to MQSeries List


To:[EMAIL PROTECTED]
cc:
Subject:Re: Acronym???


I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to be
an EXPERT for an 1130AM meeting!!


bobbee


From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


   bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service. Try it FREE for one month!  http://join.msn.com/?page=dept/dialup

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive




Re: CopyBook with Occurs Clause

2003-10-14 Thread Jim Nuckolls
The OCCURS clause without the DEPENDING ON means just that.
It expects you to have 3 occurrences.
Juni Per wrote:
Hi,

I have the following COBOL copy book imported into WMQI 2.1 CSD 5.

01 MYCOMPOUND_ELEMENT.

05 MYREPEAT_ELEMENT OCCURS 3 TIMES.

10 TEST-ELEM PIC X(2).

CWF properties , Min Occurs and Max Occurs is set to 3. I modified
min occurs to 1.
If I send a AB12XY , it works fine. But if I send only the first set
, i.e. AB , I get an error that says , message too short. It always
seems to expect the max. Is it expected to send always a fixed
length even with Occurs clause?
I could have used the depending clause , but that would mean I get
the count from the sending application or have some logic that will
populate the count.
Does WMQI expect a fixed length equal to the max occurs whenever I
use a CWF , or is it rectified with some CSD?

Do you Yahoo!?
The New Yahoo! Shopping
http://shopping.yahoo.com/?__yltc=s%3A15443%2Cd%3A22708228%2Cslk%3Atext%2Csec%3Amail
- with improved product search
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Dag, Michael
Title: RE: Acronym???





http://www7b.software.ibm.com/wsdd/zones/businessintegration/bigpicture.html


It's a start :-) 


Basically when IBM bought CrossWorlds they extend their product offering a lot but also added to the confusion... so all products were called WebSphere Business Integration ...

(fill in the blanks...) 


It is comparable to the e-Server naming, what comes underneath: a mainframe, an RS/6000, an AS/400 or an Intel server is at that point totally irrelavant :-( you'll find out later that the skills and knowledge required are totally different... 

In the end what IBM needs to do is 'componentise' these products so they fit on top of eachother...


I could go on for a couple of days on this subject.


Good luck!


Michael


-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 14, 2003 3:16 PM
To: [EMAIL PROTECTED]
Subject: Re: Acronym???



I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to be
an EXPERT for an 1130AM meeting!!



 bobbee



From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


 bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service. Try it FREE for one month! http://join.msn.com/?page=dept/dialup


Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive




-
ATTENTION:
The information in this electronic mail message is private and
confidential, and only intended for the addressee. Should you
receive this message by mistake, you are hereby notified that
any disclosure, reproduction, distribution or use of this
message is strictly prohibited. Please inform the sender by
reply transmission and delete the message without copying or
opening it.

Messages and attachments are scanned for all viruses known.
If this message contains password-protected attachments, the
files have NOT been scanned for viruses by the ING mail domain.
Always scan attachments before opening them.
-



Re: Acronym???

2003-10-14 Thread Robert Broderick
23 minutes is cutting it close. Thanks...I will speed read


From: Saraswathy A [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 19:32:21 +0530
there is a good redbook that talks about the WBI product positioning
http://publib-b.boulder.ibm.com/Redbooks.nsf/RedbookAbstracts/sg246849.html?Open.U
may want to look at only Chapter four b4 your 11.30 meeting!
-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 6:46 PM
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to
be
an EXPERT for an 1130AM meeting!!
bobbee

From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS
is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


 bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service.  Try it FREE for one month!
http://join.msn.com/?page=dept/dialup
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Get 10MB of e-mail storage! Sign up for Hotmail Extra Storage.
http://join.msn.com/?PAGE=features/es
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


queue manager does not exist error

2003-10-14 Thread Prithwiraj Basu
Hi All,

I am encountering the following problem:

A week ago I was asked to verify if one of our applications (which uses
MQSeries for inter company communication) was still set up to run for the
testers to test some stuff.  It has been a while since anyone has been
playing around with this application.  At the time when I did strmqm
queue.manager.name, I got a AMQ8118:Queue Manager does not exist error.
Then I saw that the queue manager could not be found in /var/mqm/qmgrs.
(It only had @SYSTEM listed).  Assuming that someone had erroneously blown
away the queue manager,  I had IT restore the queue manager and it again
exists at /var/mqm/qmgrs.  However upon doing strmqm I am still getting the
queue manager does not exist error.  Is there anything else I need to do
for the queue manager to be started?  I really do not want to go through
the whole MQSeries objects setup procedure if I can help it.  Thanks in
advance.

Prits

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Robert Broderick
Thanks everyone who replied. Even the offline ones. The meeting was rather
simple. I could have done it from current brain info.
Thanks for the book link. I have it up in another window and I am reading
it.
bobbee


From: Saraswathy A [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 19:32:21 +0530
there is a good redbook that talks about the WBI product positioning
http://publib-b.boulder.ibm.com/Redbooks.nsf/RedbookAbstracts/sg246849.html?Open.U
may want to look at only Chapter four b4 your 11.30 meeting!
-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 6:46 PM
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to
be
an EXPERT for an 1130AM meeting!!
bobbee

From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS
is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


 bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service.  Try it FREE for one month!
http://join.msn.com/?page=dept/dialup
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Fretting that your Hotmail account may expire because you forgot to sign in
enough? Get Hotmail Extra Storage today!
http://join.msn.com/?PAGE=features/es
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: queue manager does not exist error

2003-10-14 Thread Wyatt, T. Rob
Prits,

Sounds like they restored only the /var/mqm/qmgrs/yourqmgr tree.  If so,
they would have missed updating the /var/mqm/mqs.ini file which contains
info for the missing QMgr.  You may want to get them to restore all of
/var/mqm if this is the case.

Good luck!
-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 12:09 PM
To: [EMAIL PROTECTED]
Subject: queue manager does not exist error


Hi All,

I am encountering the following problem:

A week ago I was asked to verify if one of our applications (which uses
MQSeries for inter company communication) was still set up to run for the
testers to test some stuff.  It has been a while since anyone has been
playing around with this application.  At the time when I did strmqm
queue.manager.name, I got a AMQ8118:Queue Manager does not exist error.
Then I saw that the queue manager could not be found in /var/mqm/qmgrs.
(It only had @SYSTEM listed).  Assuming that someone had erroneously blown
away the queue manager,  I had IT restore the queue manager and it again
exists at /var/mqm/qmgrs.  However upon doing strmqm I am still getting the
queue manager does not exist error.  Is there anything else I need to do
for the queue manager to be started?  I really do not want to go through
the whole MQSeries objects setup procedure if I can help it.  Thanks in
advance.

Prits

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: queue manager does not exist error

2003-10-14 Thread Rodríguez Alvarez-Querol, Manuel Carlos
There is aditional info about qmanagers in your system in the mqs.ini file
(UNIX) or in the windows registry(Windows OS). Ask your IT to restore that
info also.

I hope this help you.

 -Mensaje original-
 De:   Prithwiraj Basu [SMTP:[EMAIL PROTECTED]
 Enviado el:   Tuesday, October 14, 2003 18:09
 Para: [EMAIL PROTECTED]
 Asunto:   queue manager does not exist error

 Hi All,

 I am encountering the following problem:

 A week ago I was asked to verify if one of our applications (which uses
 MQSeries for inter company communication) was still set up to run for the
 testers to test some stuff.  It has been a while since anyone has been
 playing around with this application.  At the time when I did strmqm
 queue.manager.name, I got a AMQ8118:Queue Manager does not exist error.
 Then I saw that the queue manager could not be found in /var/mqm/qmgrs.
 (It only had @SYSTEM listed).  Assuming that someone had erroneously blown
 away the queue manager,  I had IT restore the queue manager and it again
 exists at /var/mqm/qmgrs.  However upon doing strmqm I am still getting
 the
 queue manager does not exist error.  Is there anything else I need to do
 for the queue manager to be started?  I really do not want to go through
 the whole MQSeries objects setup procedure if I can help it.  Thanks in
 advance.

 Prits

 Instructions for managing your mailing list subscription are provided in
 the Listserv General Users Guide available at http://www.lsoft.com
 Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: Acronym???

2003-10-14 Thread Robert Broderick
That is good. Great minds must think alike. An IBM guy here supporting
performance on WMQI on the OS390 (I know, I know...that's an oximorron!!).
Showed me that page and gave me the link to it. I didn't get a chance to see
if it worked, but yours did.
 thanks

  bobbee


From: Dag, Michael [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 16:26:54 +0200
http://www7b.software.ibm.com/wsdd/zones/businessintegration/bigpicture.html

It's a start :-)

Basically when IBM bought CrossWorlds they extend their product offering a
lot but also added to the confusion... so all products were called
WebSphere
Business Integration ...
(fill in the blanks...)
It is comparable to the e-Server naming, what comes underneath: a
mainframe,
an RS/6000, an AS/400 or an Intel server is at that point totally
irrelavant
:-( you'll find out later that the skills and knowledge required are
totally
different...
In the end what IBM needs to do is 'componentise' these products so they
fit
on top of eachother...
I could go on for a couple of days on this subject.

Good luck!

Michael

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 3:16 PM
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
I am trying to find a One Page Cures All description for it but IBM likes
to FULFF. I believe it is a contendor for WBI (aka WMQI aka MQSI aka
NEON). I think IBM lets you choose between WMQI and ICS. How, Why, When,
Where is anybodies guess at this point. But I am still digging. I have to
be
an EXPERT for an 1130AM meeting!!
bobbee

From: Hill, Dave [EMAIL PROTECTED]
Reply-To: MQSeries List [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Acronym???
Date: Tue, 14 Oct 2003 08:54:59 -0400

Bee OH! double Bee double eee
it is InterChange Server but what it is actually used for ??? I think BS
is
a good one too.
Dave

-Original Message-
From: Robert Broderick [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 8:44 AM
To: [EMAIL PROTECTED]
Subject: Acronym???


WBI / ICS

I get the WBI!!

What is ICS?? (Is that a Croosworlds reference??)


 bobbee

_
Concerned that messages may bounce because your Hotmail account has
exceeded
its 2MB storage limit? Get Hotmail Extra Storage!
http://join.msn.com/?PAGE=features/es

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet
Service.  Try it FREE for one month!
http://join.msn.com/?page=dept/dialup
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
-
ATTENTION:
The information in this electronic mail message is private and
confidential, and only intended for the addressee. Should you
receive this message by mistake, you are hereby notified that
any disclosure, reproduction, distribution or use of this
message is strictly prohibited. Please inform the sender by
reply transmission and delete the message without copying or
opening it.
Messages and attachments are scanned for all viruses known.
If this message contains password-protected attachments, the
files have NOT been scanned for viruses by the ING mail domain.
Always scan attachments before opening them.
-
_
Surf and talk on the phone at the same time with broadband Internet access.
Get high-speed for as low as $29.95/month (depending on the local service
providers in your area).  https://broadband.msn.com
Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: queue manager does not exist error

2003-10-14 Thread Prithwiraj Basu
Thanks for the responses.  If the correct /var/mqm/mqs.ini is restored,
then will there be an entry in it with my queue manager name (i.e. the one
that is missing)?  Thanks.

Prits



 Wyatt, T. Rob
 [EMAIL PROTECTED]
 OFAMERICA.COM To
 Sent by: MQSeries [EMAIL PROTECTED]
 List   cc
 [EMAIL PROTECTED]
 n.AC.AT  Subject
   Re: queue manager does not exist
   error
 10/14/2003 01:16
 PM


 Please respond to
   MQSeries List
 [EMAIL PROTECTED]
 n.AC.AT






Prits,

Sounds like they restored only the /var/mqm/qmgrs/yourqmgr tree.  If so,
they would have missed updating the /var/mqm/mqs.ini file which contains
info for the missing QMgr.  You may want to get them to restore all of
/var/mqm if this is the case.

Good luck!
-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 12:09 PM
To: [EMAIL PROTECTED]
Subject: queue manager does not exist error


Hi All,

I am encountering the following problem:

A week ago I was asked to verify if one of our applications (which uses
MQSeries for inter company communication) was still set up to run for the
testers to test some stuff.  It has been a while since anyone has been
playing around with this application.  At the time when I did strmqm
queue.manager.name, I got a AMQ8118:Queue Manager does not exist error.
Then I saw that the queue manager could not be found in /var/mqm/qmgrs.
(It only had @SYSTEM listed).  Assuming that someone had erroneously blown
away the queue manager,  I had IT restore the queue manager and it again
exists at /var/mqm/qmgrs.  However upon doing strmqm I am still getting the
queue manager does not exist error.  Is there anything else I need to do
for the queue manager to be started?  I really do not want to go through
the whole MQSeries objects setup procedure if I can help it.  Thanks in
advance.

Prits

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: queue manager does not exist error

2003-10-14 Thread Wyatt, T. Rob
Yes.  Ideally, the correct file will be from the same date as the
/var/mqm/qmgrs/yourqmgr tree that was previously restored.  My
recommendation to restore all of /var/mqm at once was to insure that all
files would be in synch.  Restoring just mqs.ini will probably work if your
MQ environment is fairly stable.

-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 2:39 PM
To: [EMAIL PROTECTED]
Subject: Re: queue manager does not exist error


Thanks for the responses.  If the correct /var/mqm/mqs.ini is restored,
then will there be an entry in it with my queue manager name (i.e. the one
that is missing)?  Thanks.

Prits



 Wyatt, T. Rob
 [EMAIL PROTECTED]
 OFAMERICA.COM To
 Sent by: MQSeries [EMAIL PROTECTED]
 List   cc
 [EMAIL PROTECTED]
 n.AC.AT  Subject
   Re: queue manager does not exist
   error
 10/14/2003 01:16
 PM


 Please respond to
   MQSeries List
 [EMAIL PROTECTED]
 n.AC.AT






Prits,

Sounds like they restored only the /var/mqm/qmgrs/yourqmgr tree.  If so,
they would have missed updating the /var/mqm/mqs.ini file which contains
info for the missing QMgr.  You may want to get them to restore all of
/var/mqm if this is the case.

Good luck!
-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 12:09 PM
To: [EMAIL PROTECTED]
Subject: queue manager does not exist error


Hi All,

I am encountering the following problem:

A week ago I was asked to verify if one of our applications (which uses
MQSeries for inter company communication) was still set up to run for the
testers to test some stuff.  It has been a while since anyone has been
playing around with this application.  At the time when I did strmqm
queue.manager.name, I got a AMQ8118:Queue Manager does not exist error.
Then I saw that the queue manager could not be found in /var/mqm/qmgrs.
(It only had @SYSTEM listed).  Assuming that someone had erroneously blown
away the queue manager,  I had IT restore the queue manager and it again
exists at /var/mqm/qmgrs.  However upon doing strmqm I am still getting the
queue manager does not exist error.  Is there anything else I need to do
for the queue manager to be started?  I really do not want to go through
the whole MQSeries objects setup procedure if I can help it.  Thanks in
advance.

Prits

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive


Re: queue manager does not exist error

2003-10-14 Thread Prithwiraj Basu
That's odd because after doing the restore on the WHOLE tree (i.e.
/var/mqm) my /var/mqm/mqs.ini does not have any queue manager names entries
in it.  In fact here are the contents (pasted below).  Is this ini file in
order?  Thanks.

Prits

##
#*  *#
#* START_COPYRIGHT*#
#* Licensed Materials - Property of IBM *#
#*  *#
#* 63H9336  *#
#* (C) Copyright IBM Corporation 1994, 2000 *#
#*  *#
#* END_COPYRIGHT  *#
#*  *#
##
#***#
#* Module Name: mqs.ini*#
#* Type   : MQSeries Machine-wide Configuration File   *#
#* Function   : Define MQSeries resources for an entire machine*#
#* *#
#***#
#* Notes  :*#
#* 1) This is the installation time default configuration  *#
#* *#
#***#
AllQueueManagers:
   ##
   #* The path to the qmgrs directory, below which queue manager data  *#
   #* is stored*#
   ##
   DefaultPrefix=/var/mqm

ClientExitPath:
   ExitsDefaultPath=/var/mqm/exits

LogDefaults:
   LogPrimaryFiles=3
   LogSecondaryFiles=2
   LogFilePages=1024
   LogType=CIRCULAR
   LogBufferPages=17
   LogDefaultPath=/var/mqm/log




 Wyatt, T. Rob
 [EMAIL PROTECTED]
 OFAMERICA.COM To
 Sent by: MQSeries [EMAIL PROTECTED]
 List   cc
 [EMAIL PROTECTED]
 n.AC.AT  Subject
   Re: queue manager does not exist
   error
 10/14/2003 03:20
 PM


 Please respond to
   MQSeries List
 [EMAIL PROTECTED]
 n.AC.AT






Yes.  Ideally, the correct file will be from the same date as the
/var/mqm/qmgrs/yourqmgr tree that was previously restored.  My
recommendation to restore all of /var/mqm at once was to insure that all
files would be in synch.  Restoring just mqs.ini will probably work if your
MQ environment is fairly stable.

-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 2:39 PM
To: [EMAIL PROTECTED]
Subject: Re: queue manager does not exist error


Thanks for the responses.  If the correct /var/mqm/mqs.ini is restored,
then will there be an entry in it with my queue manager name (i.e. the one
that is missing)?  Thanks.

Prits



 Wyatt, T. Rob
 [EMAIL PROTECTED]
 OFAMERICA.COM To
 Sent by: MQSeries [EMAIL PROTECTED]
 List   cc
 [EMAIL PROTECTED]
 n.AC.AT  Subject
   Re: queue manager does not exist
   error
 10/14/2003 01:16
 PM


 Please respond to
   MQSeries List
 [EMAIL PROTECTED]
 n.AC.AT






Prits,

Sounds like they restored only the /var/mqm/qmgrs/yourqmgr tree.  If so,
they would have missed updating the /var/mqm/mqs.ini file which contains
info for the missing QMgr.  You may want to get them to restore all of
/var/mqm if this is the case.

Good luck!
-- T.Rob

-Original Message-
From: Prithwiraj Basu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 14, 2003 12:09 PM
To: [EMAIL PROTECTED]
Subject: queue manager does not exist error


Hi All,

I am encountering the following problem:

A week ago I was asked to verify if one of our applications (which uses
MQSeries for inter company communication) was still set up to run for the
testers to test some stuff.