Author |
Message
|
bond_02 |
Posted: Fri Nov 16, 2007 1:13 am Post subject: How can I know the listener port on which the broker running |
|
|
 Apprentice
Joined: 21 Dec 2006 Posts: 39 Location: kolkata
|
How can I know the listener port on which the broker is listening... _________________ Never assume you know everything.
Never assume you've seen everything.
Never discount the value of a book. If only as a weapon. |
|
Back to top |
|
 |
Vitor |
Posted: Fri Nov 16, 2007 1:29 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
If you really mean the broker, it's the port you've configured in the HTTP node that you're using as an input.
If you mean the queue manager, it's the port you've configured in the listener.
If you mean something else, please rephrase your question. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
bond_02 |
Posted: Fri Nov 16, 2007 1:44 am Post subject: Can I know the listener port on which the broker running? |
|
|
 Apprentice
Joined: 21 Dec 2006 Posts: 39 Location: kolkata
|
Vitor wrote: |
If you really mean the broker, it's the port you've configured in the HTTP node that you're using as an input.
If you mean the queue manager, it's the port you've configured in the listener.
If you mean something else, please rephrase your question. |
I wish to know the port number (on which the broker listner running ) by which i want to form input URL
Like:"http://localhost:777/Joe" to invoke webservice "/Joe" specified in the 'Path suffix for URL' Page of the HttpInput node. Can I invoke the webservice using any port number in the URL specified above? _________________ Never assume you know everything.
Never assume you've seen everything.
Never discount the value of a book. If only as a weapon. |
|
Back to top |
|
 |
Vitor |
Posted: Fri Nov 16, 2007 1:46 am Post subject: Re: Can I know the listener port on which the broker running |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
bond_02 wrote: |
Like:"http://localhost:777/Joe" to invoke webservice "/Joe" specified in the 'Path suffix for URL' Page of the HttpInput node. Can I invoke the webservice using any port number in the URL specified above? |
In that case it's controlled by the node configuration. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
mrgate |
Posted: Fri Nov 16, 2007 1:48 am Post subject: |
|
|
 Centurion
Joined: 28 Feb 2007 Posts: 141 Location: India
|
The default http listener port number is 7080 or else if you have created a custom broker and configuration manager the value set for -p in mqsicreatebroker is the broker's httplistener port number. |
|
Back to top |
|
 |
jefflowrey |
Posted: Fri Nov 16, 2007 2:39 am Post subject: Re: Can I know the listener port on which the broker running |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Vitor wrote: |
bond_02 wrote: |
Like:"http://localhost:777/Joe" to invoke webservice "/Joe" specified in the 'Path suffix for URL' Page of the HttpInput node. Can I invoke the webservice using any port number in the URL specified above? |
In that case it's controlled by the node configuration. |
No it's not.
It's the HTTPListener port that bipHTTPListener is using.
This is set at mqsicreatbroker time with the -P (case sensitive) parameter. Or with mqsichangebroker.
Or with mqsichangeproperties. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
Vitor |
Posted: Fri Nov 16, 2007 2:45 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
Shows what I know.....  _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
bond_02 |
Posted: Fri Nov 16, 2007 3:53 am Post subject: Re: Can I know the listener port on which the broker running |
|
|
 Apprentice
Joined: 21 Dec 2006 Posts: 39 Location: kolkata
|
jefflowrey wrote: |
Vitor wrote: |
bond_02 wrote: |
Like:"http://localhost:777/Joe" to invoke webservice "/Joe" specified in the 'Path suffix for URL' Page of the HttpInput node. Can I invoke the webservice using any port number in the URL specified above? |
In that case it's controlled by the node configuration. |
No it's not.
It's the HTTPListener port that bipHTTPListener is using.
This is set at mqsicreatbroker time with the -P (case sensitive) parameter. Or with mqsichangebroker.
Or with mqsichangeproperties. |
I can see bipHTTPListener in the processes list in Task Manager of the system.How can I know HTTPListener port then? _________________ Never assume you know everything.
Never assume you've seen everything.
Never discount the value of a book. If only as a weapon. |
|
Back to top |
|
 |
fjb_saper |
Posted: Fri Nov 16, 2007 4:08 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
Read up on mqsireport. I'm sure there is a way to have it report to you on which port the httplistener is running...  _________________ MQ & Broker admin |
|
Back to top |
|
 |
mrgate |
Posted: Fri Nov 16, 2007 4:24 am Post subject: |
|
|
 Centurion
Joined: 28 Feb 2007 Posts: 141 Location: India
|
use the command
mqsireportproperties <brokername> -b httplistener -o HTTPConnector -n port
for finding http listener port number.
eg :
mqsireportproperties MYBROKER -b httplistener -o HTTPConnector -n port |
|
Back to top |
|
 |
|