Author |
Message |
Topic: REST API stop processing requests |
mpong
Replies: 3 Views: 4751
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 02, 2022 6:22 pm Subject: REST API stop processing requests |
Do you observe any particular pattern? Is there any high volume of transactions going on here? sometimes, when inbound traffic exceeds the throughput of your API, this could occur.
Any way to get a ... |
Topic: Accessing AWS S# storage with IIB |
mpong
Replies: 1 Views: 2888
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 02, 2021 10:59 am Subject: Accessing AWS S# storage with IIB |
I believe it is more of AWS API question. Did you check with AWS support team on their API's in question? |
Topic: Selecting XML with Namespaces from Environment |
mpong
Replies: 18 Views: 16564
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jan 31, 2021 4:42 pm Subject: Selecting XML with Namespaces from Environment |
Just to keep it simple:
BEGIN
-- CALL CopyMessageHeaders();
-- CALL CopyEntireMessage();
CREATE LASTCHILD OF Environment DOMAIN 'XMLNSC' PARSE (InputRoot.BLOB.BLOB ... |
Topic: Message Flow Statistics in IIB 10 Web Admin |
mpong
Replies: 3 Views: 4882
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jan 31, 2021 2:37 pm Subject: Message Flow Statistics in IIB 10 Web Admin |
Both should exhibit the same behavior. Recently we had an issue with mqsichangeflowstats, however it is on latest product version "ACE" |
Topic: SOAP webservice to Restful Webservices using IBM IIB V10 |
mpong
Replies: 3 Views: 6231
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Apr 14, 2020 6:36 pm Subject: SOAP webservice to Restful Webservices using IBM IIB V10 |
I agree!
There is no way to auto-convert SOAP service to Restful API in IIB. Since you have API Connect, you can create a REST API that will accesses an existing SOAP service and expose it as a RES ... |
Topic: Odbc trace not working |
mpong
Replies: 5 Views: 9938
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 23, 2020 6:58 pm Subject: Odbc trace not working |
Just to give a context: I have seen Oracle RAC database having multiple IP's such as SCAN, Physical and Virtual. Unless we whitelist each one of the IP's on port 1521, mqsicvp or message flow does not ... |
Topic: Regarding Coexistence Versions of brokers |
mpong
Replies: 6 Views: 7546
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 18, 2019 7:40 pm Subject: Regarding Coexistence Versions of brokers |
you need to source the profile to the appropriate version based on your need
. /opt/ibm/ace-11.0.0.5/server/bin/mqsiprofile |
Topic: Does certificate update in IIB needs node restart? |
mpong
Replies: 2 Views: 7769
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 18, 2019 7:32 pm Subject: Does certificate update in IIB needs node restart? |
node has to be restarted whenever there is a new certs are added to nodess keystore and trust store |
Topic: How to set Timestamp multiple times in ESQL |
mpong
Replies: 15 Views: 20647
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 07, 2019 8:10 am Subject: How to set Timestamp multiple times in ESQL |
I remember this, I had an issue reported by the developer who noticed IIB is writting same timestamp for multiple rows, we then figured out within loop he was updating multiple DB rows with current ti ... |
Topic: IIB Flow intermittent issues |
mpong
Replies: 4 Views: 5225
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 15, 2019 11:56 am Subject: IIB Flow intermittent issues |
Regarding SMTP server timeout, there can be many reason. Do you have a SMTP provisioned for your integration solution or is it a SMTP server commonly used across in the enterprise. There can be slowne ... |
Topic: FileInput node I/O error IIB 10 |
mpong
Replies: 3 Views: 6985
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 15, 2019 11:23 am Subject: FileInput node I/O error IIB 10 |
I have seen files getting stuck in mqsitransit folder only when IIB node was stopped abrutly as it could not complete the processing. |
Topic: SHARED Variable in ESQL for Integration Service (SOAP) |
mpong
Replies: 5 Views: 7594
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 25, 2019 5:44 am Subject: SHARED Variable in ESQL for Integration Service (SOAP) |
Is there any other way around or I am doing anything wrong with this "SHARED" variable.
You should be able to achieve this using Shared variable. Can you try something like this?
DECLA ... |
Topic: ACE 11 with ITX 9? |
mpong
Replies: 3 Views: 7012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 13, 2019 7:57 pm Subject: ACE 11 with ITX 9? |
It's not out yet. I had asked IBM guys on the same few days back, they said very soon the announcement will be made. |
Topic: Rolled back a local transaction IIB10 flow error |
mpong
Replies: 5 Views: 7793
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 12, 2019 3:04 pm Subject: Rolled back a local transaction IIB10 flow error |
https://developer.ibm.com/answers/questions/471594/bip13034i/ |
Topic: Creating JSON Array in a JSON Array |
mpong
Replies: 7 Views: 11401
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 31, 2019 1:34 pm Subject: Creating JSON Array in a JSON Array |
Can you try this??
DECLARE i int 1;
SET OutputRoot.JSON.Data.type = 'order1';
CREATE FIELD OutputRoot.JSON.Data.users IDENTITY(JSON.Array);
SET OutputRoot.JSON.Data.users.It ... |