Author |
Message |
Topic: HTTPRequest POST Method |
MatthewDCampbell
Replies: 28 Views: 56370
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2022 1:35 am Subject: Logic behind both HTTPHeader and InputRoot.Blob |
(Changed this post from the original)
Feedback if somebody else running into a problem with POST of what is similar to a query string with GET. When i wrote the first post I thought somehow a HTTP ... |
Topic: SELECT field scalar only to LIST@ROW |
MatthewDCampbell
Replies: 1 Views: 2706
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Nov 12, 2021 2:19 am Subject: Test case |
Answering with a test case:
-- Arrange
DECLARE records ROW;
SET records.things[] = LIST{ROW(5 AS Thing), ROW(10 AS Thing)};
-- Act
DECLARE scalers ROW ... |
Topic: SELECT field scalar only to LIST@ROW |
MatthewDCampbell
Replies: 1 Views: 2706
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 11, 2021 11:58 pm Subject: SELECT field scalar only to LIST@ROW |
Using IBM Integration 9.0
Read through the SELECT documentation but unclear if SELECT can grab field scalars into a LIST:
DECLARE Activities ROW;
SET Activities.[] = SELECT ITEM M.J ... |
Topic: Order members in message tree (OutputRoot) |
MatthewDCampbell
Replies: 7 Views: 7012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 21, 2021 5:31 am Subject: Order members in message tree (OutputRoot) |
Using a set of CREATE statements to generate a message tree those operations should be idempotent.
i.e. the ordered set of CREATE statements should always generated the exact same tree structure. ... |
Topic: Order members in message tree (OutputRoot) |
MatthewDCampbell
Replies: 7 Views: 7012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 21, 2021 3:32 am Subject: Order members in message tree (OutputRoot) |
Then one ought to be able to regard the CREATE A CREATE statement with one of these clauses always creates a new field, and places it in the specified position.
Using a set of CREATE statements to ... |
Topic: Order members in message tree (OutputRoot) |
MatthewDCampbell
Replies: 7 Views: 7012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 20, 2021 11:25 pm Subject: Order members in message tree (OutputRoot) |
The JSON objects are modeled in the integration node message tree as a sequence of NameValue elements. The parser builds the message tree in the order in which it encounters the members in the bit str ... |
Topic: Runtime commands present only in full installation |
MatthewDCampbell
Replies: 3 Views: 4835
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 28, 2021 11:13 am Subject: Runtime commands present only in full installation |
Good tip on sidestepping Toolkit commands (e.g. mqsipackagebar).
Runtime commands probably will cover Build and Release (i.e. deploy) of bar from source code. Here again assuming the Runtime comma ... |
Topic: Runtime commands present only in full installation |
MatthewDCampbell
Replies: 3 Views: 4835
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 28, 2021 7:36 am Subject: Runtime commands present only in full installation |
Using IBM Integration bus 9 (shortly 10)
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 To ... |
Topic: Net Core managed authorization settings |
MatthewDCampbell
Replies: 12 Views: 24923
|
Forum: IBM MQ Security Posted: Tue Oct 20, 2020 7:37 am Subject: Net Core managed authorization settings |
Nope. Nothing else in the log prior to the C# call.
Not limited to C#. Assuming the most stabil client is Java. So we can shift over to Java (docker-like environment). Wondering if Python is al ... |
Topic: Net Core managed authorization settings |
MatthewDCampbell
Replies: 12 Views: 24923
|
Forum: IBM MQ Security Posted: Tue Oct 20, 2020 12:09 am Subject: Net Core managed authorization settings |
test1 exists. A similar program written in Python works fine:
import pymqi
queue_manager = '....'
channel = 'SYSTEM.DEF.SVRCONN'
host = '....'
port = '1421'
queue_name = 'SLASK.SDCANNY'
... |
Topic: Net Core managed authorization settings |
MatthewDCampbell
Replies: 12 Views: 24923
|
Forum: IBM MQ Security Posted: Mon Oct 19, 2020 6:25 am Subject: Net Core managed authorization settings |
-------------------------------------------------------------------------------
10/19/20 12:40:42 - Process(11731138.3030) User(mqm) Program(amqrmppa)
Host(sdcutv20) Installation ... |
Topic: Net Core managed authorization settings |
MatthewDCampbell
Replies: 12 Views: 24923
|
Forum: IBM MQ Security Posted: Fri Oct 16, 2020 12:05 am Subject: Net Core managed authorization settings |
morning,
Using 9.1.2 of Net Core MQ Series. MQ server is version 08000004. Documentation states that the only transport is manager (see https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_9.1.0 ... |
Topic: ascii encode URL |
MatthewDCampbell
Replies: 8 Views: 8016
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 01, 2020 9:47 pm Subject: ascii encode URL |
@abhi_thri version 9 is used with legacy code where there is no plan for upgrading so stuck with 9.
@mgk Cool that ascii encoding is automatically handled in 10. Appreciate you'll confirming with ... |
Topic: ascii encode URL |
MatthewDCampbell
Replies: 8 Views: 8016
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 30, 2020 10:15 pm Subject: ascii encode URL |
Wrapping a string in double quotes with both OutputLocalEnvironment.Destination.HTTP.RequestURL and OutputRoot.HTTPRequestHeader."X-Original-HTTP-URL" does not ascii encode the URL. A serie ... |
Topic: ascii encode URL |
MatthewDCampbell
Replies: 8 Views: 8016
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 30, 2020 10:17 am Subject: ascii encode URL |
@mgk Appreciate the tip on overriding the url. Regarding ascii encoding the example given is with query string but I assume the same applies to the URL (which is where I need ascii encoding):
SET ... |