WeSphere MQ error files (AMQ*.FDC) are kept in C:\Program Files (x86)\IBM\WebSphere MQ\errors
Monday, 30 October 2017
Monday, 23 October 2017
Configuring a message flow for identity propagation
To enable a message flow to perform identity propagation, the input nodes must extract the identity from the message flow and the output node must propagate it. If the message identity does not contain enough information for identity propagation, you can provide the identity to propagate.
Before you can configure a message flow to perform identity propagation, you must check that an appropriate security profile exists, or create a new security profile
Creating a security profile
Stop the broker.
Start the broker.
Enabling identity propagation
An input node extracts security tokens if it is configured with a security profile at deployment time. An output node propagates an identity if it is configured with a security profile that enables propagation at deployment time.
To enable a message flow to perform identity propagation, complete the following steps.
By using the BAR editor, select a security profile that has identity propagation enabled. You can set a security profile on a message flow or on individual input and output nodes. If no security profile is set for the input and output nodes, the setting is inherited from the setting on the message flow.
Before you can configure a message flow to perform identity propagation, you must check that an appropriate security profile exists, or create a new security profile
Creating a security profile
Using the command console, run the following command:
mqsicreateconfigurableservice broker_name -c SecurityProfiles -o securityProfileName -n "propagation,idToPropagateToTransport,transportPropagationConfig" -v "TRUE,STATIC ID,securityIDName"
Using the IIB Web user Interface:
Select IIB Node-->Operational Policy-->Confugarable Services.
Create new Confugarable Service.
Choose SecurityProfiles type
Using the IIB Web user Interface:
Select IIB Node-->Operational Policy-->Confugarable Services.
Create new Confugarable Service.
Choose SecurityProfiles type
Stop the broker.
Start the broker.
An input node extracts security tokens if it is configured with a security profile at deployment time. An output node propagates an identity if it is configured with a security profile that enables propagation at deployment time.
To enable a message flow to perform identity propagation, complete the following steps.
By using the BAR editor, select a security profile that has identity propagation enabled. You can set a security profile on a message flow or on individual input and output nodes. If no security profile is set for the input and output nodes, the setting is inherited from the setting on the message flow.
- In the Application Development view, right-click the BAR file, then click Open with > BAR Editor.
- Click the Manage and Configure tab. In IIB 10 Click the Manage tab.
- Click the flow or node on which you want to set the security profile. The properties that you can configure for the message flow or for the node are displayed in the Properties view. In IIB 10 click on the Resources folder to select the flow or node.
- In the Security Profile Name field, select a security profile that has identity propagation enabled.
- Save the BAR file.
Friday, 6 October 2017
Change and style blogger read more link
To insert a 'read more' jump link, click the little broken page icon .
To style the jump link do the following:-
Edit HTML.
Ctrl + F to find the 'jump-link' text.
Chnage the highlighted '<data:post.jumpText/>' to 'Continue reading...'
Save your theme.
To style the jump link do the following:-
Edit HTML.
Ctrl + F to find the 'jump-link' text.
Chnage the highlighted '<data:post.jumpText/>' to 'Continue reading...'
Save your theme.
ESQL Code Snippets
1. Convert XMLNSC to BLOB
Sometimes you may need to convert your payload to a BLOB(Binary Large Object). To be able to accomplish this the ASBITSTREAM function has to be used. The ASBITSTREAM function will return a bit stream representation of your payload. When I need to put my payload to MQ queue I convert it to a BLOB. DECLARE myChar CHAR CAST(myBLOB AS CHAR CCSID InputRoot.Properties.CodedCharSetId Encoding InputRoot.Properties.Encoding);
2. Convert BLOB to CHAR
DECLARE myChar CHAR CAST(myBLOB AS CHAR CCSID InputRoot.Properties.CodedCharSetId Encoding InputRoot.Properties.Encoding);
3. Convert CHAR to BLOB
DECLARE myBlob BLOB CAST( myChar AS BLOB CCSID InputRoot.Properties.CodedCharSetId);
4. Convert BLOB to XMLNSC
CREATE LASTCHILD OF OutputRoot.XMLNSC DOMAIN('XMLNSC') PARSE(myBlob, InputRoot.Properties.Encoding, InputRoot.Properties.CodedCharSetId);
5. Left Padding
RIGHT('0000000000' || CAST(field AS CHAR),10);
The above will left zero pad field to a 10 long field.6. Nil Element & Namespace Declaration
SET OutputRoot.XMLNSC.ns:myElement.(XMLNSC.NamespaceDecl)xmlns:"xsi" ='http://www.w3.org/2001/XMLSchema-instance';
SET OutputRoot.XMLNSC.ns:myElement.(XMLNSC.Attribute)xsi:nil = 'true';
7. Convert Payload to a String
DECLARE myBlob BLOB;
SET myBlob = ASBITSTREAM(InputRoot.XMLNSC CCSID InputRoot.Properties.CodedCharSetId ENCODING InputRoot.Properties.Encoding);
DECLARE myChar CHAR CAST(myBlob AS CHAR CCSID InputRoot.Properties.CodedCharSetId Encoding InputRoot.Properties.Encoding);
8. Backup a JSON Payload without losing arrays
CREATE LASTCHILD OF OutputRoot DOMAIN('JSON') TYPE Name NAME 'JSON';
CREATE FIELD OutputRoot.JSON.Data IDENTITY(JSON.Object)Data;
SET OutputRoot.JSON.Data = InputLocalEnvironment.Backup.Data;
9.Pass Parameters to an HTTP request Node
OutputLocalEnvironment.Destination.HTTP.QueryString.param1 = 'param1';
Each parameter must be individually set.
10. Convert BLOB to JSON
CREATE LASTCHILD OF OutputRoot DOMAIN('JSON') PARSE(InputRoot.BLOB.BLOB);
11. Select value from an ESQL array
This statement allows you to select the name without iterating through OutputLocalEnvironment.Variables.Person[] where the Id value matches the nameId. SET name = the(select item fieldvalue(r.Name) from OutputLocalEnvironment.Variables.Person[] as r where r.Id = nameId);
You may be interested in the following posts:
Good IIB ESQL Coding Practice
Properties versus MQMD folder behavior
Create a JSON Array in IBM Integration Bus
Wednesday, 4 October 2017
Create an SAP Adapter in WebSphere Integration Bus
Before you can develop message flows that use WebSphere SAP Adapter nodes, you must add prerequisite files to the runtime environment.
Ensure that you have the following files .
sapidoc3.jar
sapjco3.jar
sapjco3.dll
Save these files in a library e.g. C:/SAP_LIB
These files are available from the SAP Service Marketplace - . You must have an SAPNet account to be able to access this web site.
Ensure that you have the following files .
sapidoc3.jar
sapjco3.jar
sapjco3.dll
Save these files in a library e.g. C:/SAP_LIB
These files are available from the SAP Service Marketplace - . You must have an SAPNet account to be able to access this web site.
Subscribe to:
Posts (Atom)