Author |
Message
|
TBS |
Posted: Tue Sep 01, 2009 4:42 am Post subject: mqsichangeproperties does not work .. do I do anything wrong |
|
|
Centurion
Joined: 29 Jan 2007 Posts: 143 Location: Hillerød / Denmark
|
Hi !
Can anyone explain this ?
I change proprties and get: Successful command completion
C:\WMB61>mqsichangeproperties WBRK61_DEFAULT_BROKER -e default -o HTTPConnector
-n port -v 7070
BIP8071I: Successful command completion.
C:\WMB61>mqsireportproperties WBRK61_DEFAULT_BROKER -e default -o HTTPConnector
-n port
0
BIP8071I: Successful command completion. |
|
Back to top |
|
 |
Mr Butcher |
Posted: Tue Sep 01, 2009 5:19 am Post subject: |
|
|
 Padawan
Joined: 23 May 2005 Posts: 1716
|
From the manual
Quote: |
If you change any value, stop and restart the broker for the change to take effect |
. _________________ Regards, Butcher |
|
Back to top |
|
 |
TBS |
Posted: Tue Sep 01, 2009 5:26 am Post subject: |
|
|
Centurion
Joined: 29 Jan 2007 Posts: 143 Location: Hillerød / Denmark
|
Stop and start did not change anything  |
|
Back to top |
|
 |
mqjeff |
Posted: Tue Sep 01, 2009 5:57 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
Deploy a flow that has a node that will use the port.
See what happens.
Look at broker system log at startup. |
|
Back to top |
|
 |
jbanoop |
Posted: Tue Sep 01, 2009 5:58 am Post subject: |
|
|
Chevalier
Joined: 17 Sep 2005 Posts: 401 Location: SC
|
|
Back to top |
|
 |
TBS |
Posted: Tue Sep 01, 2009 6:12 am Post subject: |
|
|
Centurion
Joined: 29 Jan 2007 Posts: 143 Location: Hillerød / Denmark
|
Thanks for your answer ..
I'm trying to create a listener pr. execgroup with different port nr than the broker. |
|
Back to top |
|
 |
jbanoop |
Posted: Tue Sep 01, 2009 6:17 am Post subject: |
|
|
Chevalier
Joined: 17 Sep 2005 Posts: 401 Location: SC
|
i guess the
Code: |
-n explicitlySetPortNumber -v <port number> |
should help.
Set that, restart the broker and try. I have not personally tried it though.
Regards, |
|
Back to top |
|
 |
TBS |
Posted: Tue Sep 01, 2009 6:33 am Post subject: |
|
|
Centurion
Joined: 29 Jan 2007 Posts: 143 Location: Hillerød / Denmark
|
explicitlySetPortNumber if for SOAP node and i use HTTPInput node..
I'l try the SOAP and return with the resoult .. |
|
Back to top |
|
 |
jbanoop |
Posted: Tue Sep 01, 2009 6:41 am Post subject: |
|
|
Chevalier
Joined: 17 Sep 2005 Posts: 401 Location: SC
|
Looks like all Http nodes use just one listener across execution groups.
Quote: |
To change these properties, you must specify the broker name and -b httplistener. The httplistener component defines properties for the broker that are used for all the HTTPInput and HTTPReply nodes that you deploy to that broker, including a single listener for all HTTP nodes. |
|
|
Back to top |
|
 |
keenlearner |
Posted: Tue Sep 01, 2009 6:19 pm Post subject: |
|
|
Acolyte
Joined: 24 Aug 2006 Posts: 62
|
I guess you are using WMB6.1 and you are trying to change the port for Soap Input Nodes. There are two ports
1) HttpListener which is common across all exe groups. This port is used by HttpInput Nodes for receiving the message
2) HttpConnector which is distinct for each exe group. This port is used by Soap input nodes
In your case you are dealing with second one. Deploy a flow that binds to the port. the issue mqsireporperties command you see you port number. |
|
Back to top |
|
 |
TBS |
Posted: Thu Sep 03, 2009 12:24 am Post subject: |
|
|
Centurion
Joined: 29 Jan 2007 Posts: 143 Location: Hillerød / Denmark
|
It help to create a SOAP node.. If works now
Some experience . The first execgroup that get a SOAPnode gets portnr 7800. The next execgroup gets 7801 ..
I change the port nr with mqsichangeproperties WBRK61_DEFAULT_BROKER -e SOAP -o HTTPConnector -n explicitlySetPortNumber -v 8888
Restart broker ..
Thanks for your help .  |
|
Back to top |
|
 |
jbanoop |
Posted: Thu Sep 03, 2009 6:11 am Post subject: |
|
|
Chevalier
Joined: 17 Sep 2005 Posts: 401 Location: SC
|
and multiple SOAPInputs in the same EG use the same port ? |
|
Back to top |
|
 |
|