Author |
Message |
Topic: Anyone using MQ on Solaris 10 (x86?) |
kolthorr
Replies: 2 Views: 2169
|
Forum: General Discussion Posted: Tue Aug 21, 2007 1:12 am Subject: Anyone using MQ on Solaris 10 (x86?) |
Hi all,
We've always run our 'serious' servers on Solaris 9/Sparc kit. The Powers That Be are looking to cut costs as usual, and thinking about RedHat/x86. I'm trying to convince them that Solaris ... |
Topic: Pub/sub broker non-durable queue cleanup |
kolthorr
Replies: 13 Views: 9248
|
Forum: IBM MQ Java / JMS Posted: Wed Jun 01, 2005 6:47 am Subject: Pub/sub broker non-durable queue cleanup |
More & more interesting. I can reliably recreate 'orphaned' subscriptions by deliberately crashing our app. Then running a combo of DumpBroker, UnSubscribe and the JMS cleanup utility to clean thi ... |
Topic: Pub/sub broker non-durable queue cleanup |
kolthorr
Replies: 13 Views: 9248
|
Forum: IBM MQ Java / JMS Posted: Wed Jun 01, 2005 2:26 am Subject: Pub/sub broker non-durable queue cleanup |
Thanks for the replies. The JMS Cleanup utility is a java program supplied with MQ in /opt/mqm/java/bin, either a .bat file on Win or shell script. It just calls com.ibm.mq.jms.Cleanup and passes thro ... |
Topic: Jboss, WebSphere MQ, MDB's, PubSub |
kolthorr
Replies: 2 Views: 2317
|
Forum: IBM MQ Java / JMS Posted: Tue May 31, 2005 8:51 am Subject: Jboss, WebSphere MQ, MDB's, PubSub |
Our proof-of-concept works integrating JBoss 4.0.1 running on multiple platforms with MQ 5.3 on Solaris. It's not in production yet but does appear to work as you'd expect.
Cheers,
Andrew |
Topic: Pub/sub broker non-durable queue cleanup |
kolthorr
Replies: 13 Views: 9248
|
Forum: IBM MQ Java / JMS Posted: Tue May 31, 2005 8:42 am Subject: Pub/sub broker non-durable queue cleanup |
Hi all,
We're testing JMS pub/sub with WSMQ5.3 CSD08 (ie, integrated broker rather than MA0C) on Solaris. Sequence of events goes something like this:
- apps run normally for a while
- over time ... |
Topic: Specifying connection username with JMSAdmin |
kolthorr
Replies: 4 Views: 5539
|
Forum: IBM MQ Java / JMS Posted: Mon May 23, 2005 6:42 am Subject: SOLUTION: MQQueueConnectionFactory client id |
Cool, thanks for that. I hadn't run into JAAS before but will check it out.
For posterity & anyone else trying to go down this route, another way around it was to use the <mdb-user> and & ... |
Topic: Specifying connection username with JMSAdmin |
kolthorr
Replies: 4 Views: 5539
|
Forum: IBM MQ Java / JMS Posted: Mon May 23, 2005 2:46 am Subject: Specifying connection username with JMSAdmin |
Thanks for the reply. If only it were that simple! The catch is that by configuring WSMQ as a 'fully native' provider, we can specify MDBs/DLQ options etc administatively in the various deployment des ... |
Topic: Specifying connection username with JMSAdmin |
kolthorr
Replies: 4 Views: 5539
|
Forum: IBM MQ Java / JMS Posted: Fri May 20, 2005 8:17 am Subject: Specifying connection username with JMSAdmin |
Hi all,
We're experimenting with using WSMQ as a JMS provider to JBoss, via a client connection. We've used JMSAdmin to create a FS context, with the appropriate settings - channel, port, host etc. ... |
Topic: SOLUTION: Unix authorisations |
kolthorr
Replies: 3 Views: 2847
|
Forum: General IBM MQ Support Posted: Fri May 20, 2005 8:06 am Subject: SOLUTION: Unix authorisations |
Probably the easiest client-independent way is to turn on queue manager authorisation events:
- in runmqsc, enter ALTER QMGR AUTHOREV (ENABLED)
Then run your app, see the failure. Then use a tool ... |
Topic: Intermittent MQJMS2007/MQRC 2195 |
kolthorr
Replies: 1 Views: 3067
|
Forum: IBM MQ Java / JMS Posted: Fri Jan 28, 2005 4:47 am Subject: Intermittent MQJMS2007/MQRC 2195 |
Hi all,
One of our apps is experiencing intermittent errors like the below. We're using MQ 5.3 CSD08 & the latest java .jars everywhere. We're beginning to wonder if there could be a network pr ... |
Topic: SOLUTION/BUG: MQQueueConnectionFactory client id |
kolthorr
Replies: 3 Views: 3497
|
Forum: IBM MQ Java / JMS Posted: Tue Jan 25, 2005 2:00 am Subject: SOLUTION/BUG: MQQueueConnectionFactory client id |
Thanks all for the replies. Vennela - you're right, it did feel a bit wierd having to use BaseMQ with JMS stuff (our app has access to both classes). But it seemed to work, just using the MQEnvironme ... |
Topic: SOLUTION/BUG: MQQueueConnectionFactory client id |
kolthorr
Replies: 3 Views: 3497
|
Forum: IBM MQ Java / JMS Posted: Mon Jan 24, 2005 6:39 am Subject: SOLUTION/BUG: MQQueueConnectionFactory client id |
Hi all,
Just had a little problem with MQ & JMS. We wanted to set a user id from a java application. Wonderful IDEs these days popup a list of methods on an object - so naturally we did somethi ... |
Topic: SOLUTION: Unix authorisations |
kolthorr
Replies: 3 Views: 2847
|
Forum: General IBM MQ Support Posted: Mon Jan 24, 2005 4:52 am Subject: SOLUTION: Unix authorisations |
Hi all,
Just been through some pain setting up security on solaris & thought I'd share the solution in case anyone runs into it.
We added MCA userids to new SVRCONN channels for each of our ... |
Topic: AIX 5.3 trigmon swallowing signals? |
kolthorr
Replies: 9 Views: 5688
|
Forum: General IBM MQ Support Posted: Sun Nov 09, 2003 3:44 pm Subject: Signal handling fixed! |
Hi all,
Following a tip from IBM we set the following env variable:
AMQ_SIGCHLD_SIGACTION=YES
in the MQ envrionment and restarted MQ. Problem solved! Our triggered program now receives child ... |
Topic: AIX 5.3 trigmon swallowing signals? |
kolthorr
Replies: 9 Views: 5688
|
Forum: General IBM MQ Support Posted: Sun Oct 26, 2003 3:17 pm Subject: Re: signals? |
I've made a code change to our triggered process so the parent process just sleeps for a while, then exits without waiting for its child exit signals. Everything works as expected.
That goes agains ... |