Author |
Message |
Topic: Unable to configure for testing with .NET Core |
Vitor
Replies: 13 Views: 19178
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Feb 12, 2021 7:10 am Subject: Unable to configure for testing with .NET Core |
... the simplest way to avoid security failures would be to code an mqm group user ID in the SVRCONN MCAUSER field and turn off CHLAUTH and CONNAUTH.
Not a recommended practice.
Neither is trying ... |
Topic: Passing Username/Password as application/x-www-form-urlencod |
Vitor
Replies: 11 Views: 14376
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 09, 2021 5:41 am Subject: Re: Passing Username/Password as application/x-www-form-urle |
Also I asked the vendor but they aren't sure of it
Well that's weird but not as unusual as it should be.
But in your first post you said:
I am passing the username/password as Key and Valu ... |
Topic: Passing Username/Password as application/x-www-form-urlencod |
Vitor
Replies: 11 Views: 14376
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Feb 08, 2021 5:45 am Subject: Passing Username/Password as application/x-www-form-urlencod |
Neither of those methods add anything to the body of the call.
Your first example adds them to the parameters passed in the HTTP header, the second adds them as query items to the end of the URL. ... |
Topic: Runtime commands present only in full installation |
Vitor
Replies: 3 Views: 4671
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 28, 2021 1:55 pm Subject: Runtime commands present only in full installation |
Runtime commands probably will cover Build and Release (i.e. deploy) of bar from source code.
No, as I said above, they don't cover the build. Compilation requires the Toolkit and it's compilation ... |
Topic: Runtime commands present only in full installation |
Vitor
Replies: 3 Views: 4671
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 28, 2021 7:51 am Subject: Re: Runtime commands present only in full installation |
Assuming there is no other way to use the Toolkit commands (e.g. mqsicreatebar) or Runtime commands (mqsi e.g. mqsideploy) without a full installation of Toolkit? There is no lightweight packaging of ... |
Topic: Unable to parse the XML inside the CData Section |
Vitor
Replies: 3 Views: 4600
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 25, 2021 8:05 am Subject: Re: Unable to parse the XML inside the CData Section |
But the Employer Attribute inside the Employment Tag
So, to be clear, you're parsing this CDATA section using ESQL. The escaped characters are being correctly converted if they're the content ... |
Topic: MQ External to Azure |
Vitor
Replies: 3 Views: 5081
|
Forum: General IBM MQ Support Posted: Thu Jan 21, 2021 5:43 am Subject: MQ External to Azure |
It seems MS ExpressRoute is in the mix. Never heard of this till now.
Welcome to Azure, enjoy your stay.
ExpressRoute doesn't make any difference to you at an MQ level. It's a proprietary (and ... |
Topic: Selecting XML with Namespaces from Environment |
Vitor
Replies: 18 Views: 16084
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 14, 2021 12:43 pm Subject: Selecting XML with Namespaces from Environment |
Why did you change to
Declare sample NAMESPACE Value 'xyz';
which is wrong from
DECLARE xmlns NAMESPACE 'http://sample/iibadmin';
which has a confusing prefix but is correct.
Look ... |
Topic: Message lost using dmpmqmsg? |
Vitor
Replies: 7 Views: 6368
|
Forum: General IBM MQ Support Posted: Thu Jan 14, 2021 5:27 am Subject: Re: Message lost using dmpmqmsg? |
I'm asking for a friend who once famously logged on as UNIX superuser and issued rm -r * or some such command.
We've all typed that command while logged on as root and then realized we were at the ... |
Topic: Selecting XML with Namespaces from Environment |
Vitor
Replies: 18 Views: 16084
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 13, 2021 10:51 am Subject: Selecting XML with Namespaces from Environment |
Thanks for your response. I tried with the below select and still nothing.
What happened when you tried the more simple SET statement suggested by my worthy associate?
Can you also post the code ... |
Topic: invoking CICS program written in PL/I using CICS requestNode |
Vitor
Replies: 4 Views: 5399
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 12, 2021 6:28 am Subject: Re: invoking CICS program written in PL/I using CICS request |
1. Can CICS request node be used to invoke programs written in PL/I? Or it supports only programs written in COBOL.
The CICSRequest node invokes CICS transactions. It doesn't matter to ACE what lan ... |
Topic: Create new Object from XSD in ESQL |
Vitor
Replies: 8 Views: 7832
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 12, 2021 6:20 am Subject: Create new Object from XSD in ESQL |
Indeed, when minOccurs is set to 1, the values reappear in the output file (not in the debugger).
Because it's not until you actually ask the model to be serialized the lack of the element is a pr ... |
Topic: Create new Object from XSD in ESQL |
Vitor
Replies: 8 Views: 7832
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 11, 2021 12:19 pm Subject: Create new Object from XSD in ESQL |
The elements are set to minOccurs=0, so if no value is provided to the model it doesn't serialize the element and is content it has done right.
If you set minOccurs=1 (indicating that the element m ... |
Topic: Create new Object from XSD in ESQL |
Vitor
Replies: 8 Views: 7832
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 11, 2021 8:11 am Subject: Create new Object from XSD in ESQL |
The default fields are not visible either in the debugger or in the final output (to a file).
Post your DFDL |
Topic: Create new Object from XSD in ESQL |
Vitor
Replies: 8 Views: 7832
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 11, 2021 7:33 am Subject: Re: Create new Object from XSD in ESQL |
I managed with the following code to create a message in ESQL, but the other fields (which contain default values) do not appear :
Do not appear where? The DFDL defaults probably don't show up in ... |