ApplIdentity data set on the MQ message is not read by the recieverRe-connection settings in IBM.XMSClient jar file version for IBM MQ7 and MQ8ALTER CHANNEL fails with AMQ8242: SSLCIPH definition wrongDoes JMS Interface suports MQ Open options?How to show MQ client list by Java?How to map XMS messages onto IBM MQ messagesIBM MQ Explorer - create a Queue managerIBM MQ failed error 2058WSO2: Add IBM MQ Correllation ID to message headerHow to setup proxy host and port to IBM MQConnectionFactory
What was the significance of Spider-Man: Far From Home being an MCU Phase 3 film instead of a Phase 4 film?
What are the effects of abstaining from eating a certain flavor?
What are some bad ways to subvert tropes?
Passwordless authentication - how and when to invalidate a login code
Computer name naming convention for security
Users forgotting to regenerate PDF before sending it
When moving a unique_ptr into a lambda, why is it not possible to call reset?
What was the nature of the known bugs in the Space Shuttle software?
When do flights get cancelled due to fog?
Have Arahants have eliminated all Sankhara?
How to evaluate the performance of open source solver?
Is it possible for a character at any level to cast all 44 Cantrips in one week without Magic Items?
Why did Robert F. Kennedy loathe Lyndon B. Johnson?
How to say "is going" in Russian in "this game is going to perish"
Calculate the largest palindromic number from the product of two 6-digit numbers (100000 to 999999)
Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?
Interpretation of non-significant results as "trends"
What's the difference between a type and a kind?
Intern not wearing safety equipment; how could I have handled this differently?
What is the highest level of accuracy in motion control a Victorian society could achieve?
Why is a mixture of two normally distributed variables only bimodal if their means differ by at least two times the common standard deviation?
How can I use my cell phone's light as a reading light?
How many Jimmys can fit?
Can we share mixing jug/beaker for developer, fixer and stop bath?
ApplIdentity data set on the MQ message is not read by the reciever
Re-connection settings in IBM.XMSClient jar file version for IBM MQ7 and MQ8ALTER CHANNEL fails with AMQ8242: SSLCIPH definition wrongDoes JMS Interface suports MQ Open options?How to show MQ client list by Java?How to map XMS messages onto IBM MQ messagesIBM MQ Explorer - create a Queue managerIBM MQ failed error 2058WSO2: Add IBM MQ Correllation ID to message headerHow to setup proxy host and port to IBM MQConnectionFactory
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am using TIBCO Business works so I can't directly us JMS API and I can only set the input to the API. Below is the MQ queue URI I have created but I get an error when the application tries to get handle to queue during runtime.
queue://QManager/QName?targetClient=1&mdWriteEnabled=true&mdMessageContext=1
Error I am getting
caused by: com.tibco.plugin.share.jms.impl.JMSExceptionWrapper: com.ibm.msg.client.jms.DetailedJMSException: JMSCC0005: The specified value '??1' is not allowed for 'mdMessageContext'.
The given value is not allowed for the property specified.
Change the value to a value that is supported for the property.
According to IBM knowledge article, the value I am setting for mdMessageContext is correct. below are the links to the Knowledge article.
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q032350_.htm
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8.0.0/com.ibm.mq.javadoc.doc/WMQJMSClasses/constant-values.html#com.ibm.msg.client.wmq.common.CommonConstants.WMQ_MQMD_WRITE_ENABLED
Thanks for your help.
jms ibm-mq
add a comment |
I am using TIBCO Business works so I can't directly us JMS API and I can only set the input to the API. Below is the MQ queue URI I have created but I get an error when the application tries to get handle to queue during runtime.
queue://QManager/QName?targetClient=1&mdWriteEnabled=true&mdMessageContext=1
Error I am getting
caused by: com.tibco.plugin.share.jms.impl.JMSExceptionWrapper: com.ibm.msg.client.jms.DetailedJMSException: JMSCC0005: The specified value '??1' is not allowed for 'mdMessageContext'.
The given value is not allowed for the property specified.
Change the value to a value that is supported for the property.
According to IBM knowledge article, the value I am setting for mdMessageContext is correct. below are the links to the Knowledge article.
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q032350_.htm
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8.0.0/com.ibm.mq.javadoc.doc/WMQJMSClasses/constant-values.html#com.ibm.msg.client.wmq.common.CommonConstants.WMQ_MQMD_WRITE_ENABLED
Thanks for your help.
jms ibm-mq
Do you really have a;
beforemdWriteEnabled=true
?
– JoshMc
Mar 26 at 2:17
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09
add a comment |
I am using TIBCO Business works so I can't directly us JMS API and I can only set the input to the API. Below is the MQ queue URI I have created but I get an error when the application tries to get handle to queue during runtime.
queue://QManager/QName?targetClient=1&mdWriteEnabled=true&mdMessageContext=1
Error I am getting
caused by: com.tibco.plugin.share.jms.impl.JMSExceptionWrapper: com.ibm.msg.client.jms.DetailedJMSException: JMSCC0005: The specified value '??1' is not allowed for 'mdMessageContext'.
The given value is not allowed for the property specified.
Change the value to a value that is supported for the property.
According to IBM knowledge article, the value I am setting for mdMessageContext is correct. below are the links to the Knowledge article.
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q032350_.htm
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8.0.0/com.ibm.mq.javadoc.doc/WMQJMSClasses/constant-values.html#com.ibm.msg.client.wmq.common.CommonConstants.WMQ_MQMD_WRITE_ENABLED
Thanks for your help.
jms ibm-mq
I am using TIBCO Business works so I can't directly us JMS API and I can only set the input to the API. Below is the MQ queue URI I have created but I get an error when the application tries to get handle to queue during runtime.
queue://QManager/QName?targetClient=1&mdWriteEnabled=true&mdMessageContext=1
Error I am getting
caused by: com.tibco.plugin.share.jms.impl.JMSExceptionWrapper: com.ibm.msg.client.jms.DetailedJMSException: JMSCC0005: The specified value '??1' is not allowed for 'mdMessageContext'.
The given value is not allowed for the property specified.
Change the value to a value that is supported for the property.
According to IBM knowledge article, the value I am setting for mdMessageContext is correct. below are the links to the Knowledge article.
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q032350_.htm
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_8.0.0/com.ibm.mq.javadoc.doc/WMQJMSClasses/constant-values.html#com.ibm.msg.client.wmq.common.CommonConstants.WMQ_MQMD_WRITE_ENABLED
Thanks for your help.
jms ibm-mq
jms ibm-mq
edited Mar 26 at 10:53
JoshMc
5,9411 gold badge7 silver badges25 bronze badges
5,9411 gold badge7 silver badges25 bronze badges
asked Mar 25 at 21:38
RajRaj
44 bronze badges
44 bronze badges
Do you really have a;
beforemdWriteEnabled=true
?
– JoshMc
Mar 26 at 2:17
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09
add a comment |
Do you really have a;
beforemdWriteEnabled=true
?
– JoshMc
Mar 26 at 2:17
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09
Do you really have a
;
before mdWriteEnabled=true
?– JoshMc
Mar 26 at 2:17
Do you really have a
;
before mdWriteEnabled=true
?– JoshMc
Mar 26 at 2:17
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346805%2fapplidentity-data-set-on-the-mq-message-is-not-read-by-the-reciever%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346805%2fapplidentity-data-set-on-the-mq-message-is-not-read-by-the-reciever%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you really have a
;
beforemdWriteEnabled=true
?– JoshMc
Mar 26 at 2:17
oh sorry no, that was copy past error; pls ignore
– Raj
Mar 26 at 4:23
The ?? before the 1 in your error message looks strange. And just targetClient=1 works fine ? Try for example with targetClient=99 and no mdMessageContext and see if you also get an error with that '??" in front. Maybe there's something else going on... (BW replacing things with 'MessageContext')
– Axel Podehl
Mar 27 at 8:09