ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Deploying using Hudson

Post new topic  Reply to topic
 Deploying using Hudson « View previous topic :: View next topic » 
Author Message
kash3338
PostPosted: Thu Mar 22, 2012 8:23 pm    Post subject: Deploying using Hudson Reply with quote

Shaman

Joined: 08 Feb 2009
Posts: 709
Location: Chennai, India

Hi, We have automated our deployment process using Hudson. Is it possible to run the Subscription rules as well using Hudson? Just to automate the complete process.
Back to top
View user's profile Send private message Send e-mail
fjb_saper
PostPosted: Thu Mar 22, 2012 9:15 pm    Post subject: Re: Deploying using Hudson Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

kash3338 wrote:
Hi, We have automated our deployment process using Hudson. Is it possible to run the Subscription rules as well using Hudson? Just to automate the complete process.


Have you tried support pack MO72 (mqsc.exe)?
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
kash3338
PostPosted: Fri Mar 23, 2012 1:00 am    Post subject: Re: Deploying using Hudson Reply with quote

Shaman

Joined: 08 Feb 2009
Posts: 709
Location: Chennai, India

fjb_saper wrote:
Have you tried support pack MO72 (mqsc.exe)?


We are using MQ v6.0. Is there a MQSC command to create/register a subscription against a topic? If thats available, I can use the ANT script to deploy the subscription.
Back to top
View user's profile Send private message Send e-mail
mqjeff
PostPosted: Fri Mar 23, 2012 2:58 am    Post subject: Re: Deploying using Hudson Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

kash3338 wrote:
fjb_saper wrote:
Have you tried support pack MO72 (mqsc.exe)?


We are using MQ v6.0. Is there a MQSC command to create/register a subscription against a topic? If thats available, I can use the ANT script to deploy the subscription.


MQv6 doesn't know anything about subscriptions or topics. MQv6's pub/sub broker is not as performant and stable and functional as the one in MQ v7.

MQv6 goes out of support in less than six months, you need to be in the process of migrating if you are going to remain supported.
Back to top
View user's profile Send private message
kash3338
PostPosted: Fri Mar 23, 2012 4:15 am    Post subject: Re: Deploying using Hudson Reply with quote

Shaman

Joined: 08 Feb 2009
Posts: 709
Location: Chennai, India

fjb_saper wrote:
Have you tried support pack MO72 (mqsc.exe)?


Can you explain how this can be acheived using this pack?
Back to top
View user's profile Send private message Send e-mail
lancelotlinc
PostPosted: Fri Mar 23, 2012 5:08 am    Post subject: Re: Deploying using Hudson Reply with quote

Jedi Knight

Joined: 22 Mar 2010
Posts: 4941
Location: Bloomington, IL USA

kash3338 wrote:
We have automated our deployment process using Hudson.


CONGRATULATIONS.
_________________
http://leanpub.com/IIB_Tips_and_Tricks
Save $20: Coupon Code: MQSERIES_READER
Back to top
View user's profile Send private message Send e-mail
kash3338
PostPosted: Fri Mar 23, 2012 5:11 am    Post subject: Re: Deploying using Hudson Reply with quote

Shaman

Joined: 08 Feb 2009
Posts: 709
Location: Chennai, India

lancelotlinc wrote:
CONGRATULATIONS.


Thanks and the solution for including subscription's in this please?
Back to top
View user's profile Send private message Send e-mail
lancelotlinc
PostPosted: Fri Mar 23, 2012 5:31 am    Post subject: Re: Deploying using Hudson Reply with quote

Jedi Knight

Joined: 22 Mar 2010
Posts: 4941
Location: Bloomington, IL USA

kash3338 wrote:
lancelotlinc wrote:
CONGRATULATIONS.


Thanks and the solution for including subscription's in this please?


One solution is to upgrade to WMB v7 or WMB v8.
_________________
http://leanpub.com/IIB_Tips_and_Tricks
Save $20: Coupon Code: MQSERIES_READER
Back to top
View user's profile Send private message Send e-mail
mqjeff
PostPosted: Fri Mar 23, 2012 5:35 am    Post subject: Re: Deploying using Hudson Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

lancelotlinc wrote:
kash3338 wrote:
lancelotlinc wrote:
CONGRATULATIONS.


Thanks and the solution for including subscription's in this please?


One solution is to upgrade to WMB v7 or WMB v8.


Again, there's nothing that can be done to make an MQ v6 queue manager aware of pub/sub objects from an administrative point of view.

If you wish to create topics and subscriptions, you need to develop an application that will register the relevant subscriptions and create the necessary topics. You can then use ant or other means to cause this application to run.

But what you should do is upgrade your queue managers to MQ v7. If you chose to upgrade your broker to MB v7 or MB v8, then you would be forced to upgrade your queue manager to mq v7.
Back to top
View user's profile Send private message
lancelotlinc
PostPosted: Fri Mar 23, 2012 5:50 am    Post subject: Reply with quote

Jedi Knight

Joined: 22 Mar 2010
Posts: 4941
Location: Bloomington, IL USA

The responsibility to manage subscriptions shifts from WMB to WMQ at WMB V7. Therefore, to backup subscription objects using the saveqmgr function, you would need both WMB v7 and WMQ v7.
_________________
http://leanpub.com/IIB_Tips_and_Tricks
Save $20: Coupon Code: MQSERIES_READER
Back to top
View user's profile Send private message Send e-mail
Vitor
PostPosted: Fri Mar 23, 2012 6:17 am    Post subject: Reply with quote

Grand High Poobah

Joined: 11 Nov 2005
Posts: 26093
Location: Texas, USA

lancelotlinc wrote:
Therefore, to backup subscription objects using the saveqmgr function, you would need both WMB v7 and WMQ v7.


Or to include them in the WMB deploy function as the OP appears to be trying to do.
_________________
Honesty is the best policy.
Insanity is the best defence.
Back to top
View user's profile Send private message
Vitor
PostPosted: Fri Mar 23, 2012 6:19 am    Post subject: Re: Deploying using Hudson Reply with quote

Grand High Poobah

Joined: 11 Nov 2005
Posts: 26093
Location: Texas, USA

mqjeff wrote:
But what you should do is upgrade your queue managers to MQ v7. If you chose to upgrade your broker to MB v7 or MB v8, then you would be forced to upgrade your queue manager to mq v7.


In any event, you shouldn't still be using WMB6.0.
_________________
Honesty is the best policy.
Insanity is the best defence.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Deploying using Hudson
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.