<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<!-- keep comments -->
<xsl:template match="comment()">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<!-- remove element prefix -->
<xsl:element name="{local-name()}">
<!-- process attributes -->
<xsl:for-each select="@*">
<!-- remove attribute prefix -->
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
Author: skadhir
Remove Empty XML elements
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[not(@*|*|comment()|processing-instruction()) and normalize-space()='']"/>
</xsl:stylesheet>
Sidebar using simple CSS properties

Sometimes we want to show/hide a view to avoid cluttering the screen. Here is an example of how it can be done in Vaadin.
.sidebar {
position: fixed;
top: 0;
right: -200px;
width: 200px;
height: 100%;
background-color: #f1f1f1;
transition: 0.5s;
padding-left: 10px;
}
.show {
right: 0;
}
public HelloWorldView() {
setSizeFull();
VerticalLayout sidebar = new VerticalLayout();
sidebar.setSizeUndefined();
sidebar.addClassName("sidebar");
Button toggleButton = new Button("Click", event -> {
if (sidebar.getClassNames().contains("show")) {
sidebar.getClassNames().remove("show");
} else {
sidebar.getClassNames().add("show");
}
});
add(toggleButton, sidebar);
}

You can see here how the sideview is getting shown/hidden when user clicks on the Button
Vaadin Button Theme Variants
https://cdn.vaadin.com/vaadin-lumo-styles/1.0.0/demo/badges.html
sayHello = new Button("Say hello");
sayHello.addThemeVariants(ButtonVariant.LUMO_PRIMARY,ButtonVariant.LUMO_SUCCESS);

ACE Explorer
If you’re like us working on WMB since v6.1, we all know how much the product has changed so far. We’re working on the latest version ACEv12 for a migration project which is to migrate from IIBv10 to ACEv12. The client is using a custom application for all administrative tasks and is completely built using IBM Integration JAVA API.
As the product architecture has changed dramatically in ACE, IIB v10 APIs are deprecated so the current custom application won’t work AS IS. So, it has be re-written from scratch and today we’re able to get the ActivityLog working.
Here is the screenprint showing all message flows and one of the flow’s activity log.

Activity Log

The current version ACE12.0.3 doesn’t support deploying a bar file with a overriding property file. But, we added this feature to simplify the life of both developers/administrators. All, you’ve to do is, choose the Integration server in which you’d like to deploy, drag the bar file and properties file then click the Deploy Bar button located at the bottom.
If you’re using IIBv10 Integration API and looking for any assistance, please contact us at support@vaithu.com.
Also, we’d like to know the features you’re expecting in the Web UI. You can put them in the comments section. We’ll try our best to get them into ACE Buddy. Those who provide good suggestions would get ACE Buddy free license for ONE year.
Mastering ESQL In One Day
Can someone master ESQL in just one day? YES, ESQL is not like any other programming language which has lot of statements and libraries to know. It is the most simplest language that I’ve ever seen.
The statements are limited, syntax is simple and learning is super easy. As an ACE/IIB developer, what do you do most of the time? Writing ESQL code right? Then, are you harvesting the real power of ESQL?
This one day training program is going to show you the real power of ESQL. It is going to explain you from the basics to advanced statements with examples
Here is what we’re going to cover in the course.
- Introduction
- Data Types
- Boolean
- TRUE
- FALSE
- UNKNOWN
- DateTime
- NULL
- Numeric
- DECIMAL
- FLOAT
- INTEGER
- Reference
- String
- BIT
- BLOB
- CHARACTER
- Boolean
- Correlation Names
- Root
- FirstChild
- LastChild
- FirstSibling
- NextSibling
- PreviousSibling
- LastSibling
- Message Components
- Properties
- Message Domain
- Environment
- Local Environment
- Exception List
- Variables
- Declaration
- Normal
- External
- Shared
- Scope
- Operators
- Simple Comparison
- >, >=, <, <=, <> & =
- Complex Comparison
- BETWEEN
- EXISTS
- IN
- IS
- LIKE
- SINGULAR
- Logical
- AND
- OR
- NOT
- Numeric
- String
- Simple Comparison
- Field References
- Field Types
- NAME
- TYPE
- NAMEVALUE
- Conditional Statements
- IF….ELSEIF…..ELSE
- CASE
- Simple
- Searched
- Looping Statements
- REPEAT UNTIL
- WHILE
- FOR
- LABELED LOOP
- ITERATE
- LEAVE
- RETURN
- Error Handling
- THROW
- DECLARE HANDLER
- Modules
- Procedures
- Functions
- CALL
- MOVE
- LASTMOVE
- Handling NULL values
- Propagating Multiple Messages
- List Functions
- CARDINALITY
- EXISTS
- SINGULAR
- THE
- ITEM
- Complex Functions
- CAST
- FORMAT
- SELECT
- Simple
- Complex
- ROW
- LIST
- ROW & LIST Combined
- Working with Database
- INSERT
- SELECT
- UPDATE
- DELETE
- PASSTHRU
- Stored Procedures
- Manipulating repeating fields
- Calling Java methods
- String Functions
- CONTAINS
- ENDSWITH
- LEFT
- LENGTH
- LOWER
- LTRIM
- OVERLAY
- POSITION
- REPLACE
- REPLICATE
- RIGHT
- RTRIM
- SPACE
- STARTSWITH
- SUBSTRING
- TRANSLATE
- TRIM
- UPPER
- Miscellaneous
- ATTACH
- DETACH
- PATH
- BROKER SCHEMA
- DECLARE
- CREATE FIELD
- DELETE FIELD
- COALESCE
- SLEEP
- UUIDASCHAR
- ASBITSTREAM
- EXTRACT
As the trainer has more than 15+ years of experience in ESQL, you can ask him any questions related to ESQL. If you’ve complex requirement, ask him how to resolve it during the training. So, why wait ?
Enroll into the training program and become a Master in ESQL in One Day.
Event Address: Online
Contact us at (612) 305-8684 or support@vaithu.com
Course Fee: USD : 75$/ INR 5000
To register the training, click here : shorturl.at/bpuLO
Alternative Link : https://docs.google.com/forms/d/e/1FAIpQLSd9GuiYIV7Kh18MwLUjqbwqFHL-n4RGl68Goaxm3LShMvV03A/viewform?entry.2109138769=Yes
ACE Buddy
One tool for all your ACE needs like MQ testing, Kafka Testing, String manipulations, Proprty file generator and KafKa Editor.

If you’ve any suggestions or questions, feel free to ask in the comments. We’ll try to include those as well in our next release.
Message Set to DFDL Automatic Conversion

Recently we’ve started working on migrating stuffs from WMBv7 to ACEv12. The biggest challenge we’ve encountered is so far is, converting the message sets to DFDLs. Please note I’m talking about Custom Wire Formats not Cobol copy books.
I’d say it is one of the most difficult task I’ve encountered so far because the messages sets are all EDIFACT ( IBM 500 ) messages with different initiators, separators and terminators along with various padding characters and justification configuration.
So, thought of finding some automatic solution in Google but no luck. There are 100+ models need to be converted in next couple of months. All I can do so far is, write a java program to read the MXSD files and clean up the unnecessary stuffs. Also, tried to have the group indicators/terminators and delimiters converted into DFDL annotations.
This is not a 100% working solution but definitely helping a lot to quickly have the DFDL created. If you’ve any better solution, please feel free to add in the comments.
import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.ArrayList; import java.util.List; import javax.swing.JFileChooser; import javax.swing.JOptionPane; import javax.swing.filechooser.FileSystemView; import org.apache.commons.io.FileUtils; import org.apache.commons.io.FilenameUtils; import org.apache.commons.lang3.StringUtils; public class TDSCleaner { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { // TODO Auto-generated method stub JFileChooser jfc = new JFileChooser(FileSystemView.getFileSystemView().getHomeDirectory()); int returnValue = jfc.showOpenDialog(null); if (returnValue == JFileChooser.APPROVE_OPTION) { File selectedFile = jfc.getSelectedFile(); System.out.println(selectedFile.getAbsolutePath()); Path path = Paths.get(selectedFile.getAbsolutePath()); List<String> lines = Files.readAllLines(path, StandardCharsets.UTF_8); List<String> newLine = new ArrayList<>(); /*String rootElm = JOptionPane.showInputDialog("Enter the root element name"); if (rootElm != null) { rootElm = " 01 "+FilenameUtils.getBaseName(selectedFile.getAbsolutePath())+"."; newLine.add(rootElm); } String rootElm = " 01 "+FilenameUtils.getBaseName(selectedFile.getAbsolutePath())+"."; newLine.add(rootElm);*/ String delimiter,groupTerminator,groupIndicator; delimiter = null; groupTerminator = null; groupIndicator = null; for (String line : lines) { if (!StringUtils.containsAny(line, "annotation","appinfo", "MRMessage","MRMessage","MRComplexType","tdsElemRep")) { if (line.contains("tdsStructRep")) { line = StringUtils.replace(line, "&lt;U+001D&gt;", "%GS;"); line = StringUtils.replace(line, "&lt;U+001C&gt;", "%FS;"); if (line.contains("groupIndicator")) { groupIndicator = "dfdl:initiator="+StringUtils.substringBetween(line, "groupIndicator=", " "); } if (line.contains("groupTerminator")) { groupTerminator = "dfdl:terminator="+StringUtils.substringBetween(line, "groupTerminator=", " "); } if (line.contains("delimiter")) { delimiter = "dfdl:separator="+StringUtils.substringBetween(line, "delimiter=", " "); } continue; } if (line.contains("<xsd:sequence")) { if (delimiter != null) { line = StringUtils.replace(line, ">", " ")+delimiter+">"; } if (groupIndicator != null) { line = StringUtils.replace(line, ">", " ")+groupIndicator+">"; } if (groupTerminator != null) { line = StringUtils.replace(line, ">", " ")+groupTerminator+">"; } } delimiter = null; groupTerminator = null; groupIndicator = null; newLine.add(line); System.out.println(line); } } if (!lines.isEmpty()) { String cpyFileName = FilenameUtils.getFullPath(selectedFile.getAbsolutePath()) +"Modified_"+FilenameUtils.getBaseName(selectedFile.getName())+".xsd"; System.out.println(cpyFileName); FileUtils.writeLines(new File(cpyFileName), newLine); JOptionPane.showMessageDialog(null, "File created successfully"); } else { JOptionPane.showMessageDialog(null, "Lines are empty check your source file"); } } } }
IIB to ACE
Some of the notes we’ve taken while working on a migration project from IIB to ACE. If you see anything has changed or provided incorrectly, feel free put those in the comments and we’d update this post with your comments.

- App Connect Enterprise v11 (first released 2018):
- Onpremise + Cloud
- IIB + App Connect Professional
- Local -> Toolkit ; Cloud -> Designer
- Integration Node is optional
- Integration Servers can run independently
- Configurable services are replaced with Policy files
- Local queue manager is required if Collector, Timer and Aggregate nodes are used.
- One Web UI can show any number of Integration Servers & Nodes
- Not all features available in v10 Web UI are available in ACE V11 but soon they will be available
- Flow and Resource Statistics are turned on by default
- Some mqsi commands are not available like mqsiformatlog, mqsireadlog, mqsimigratecomponents, mqsideleteconfigurableservice
- IIB End of Support is announced as Apr 2022
- ACE can run in on-premise and cloud
- Use TransformationAdvisor for the migration plan and impact
- App Connect Standard is effectively IIB standard with the addition of the Salesforce Request node whereas App Connect Enterprise is the official successor to IIB and includes the ACE V11 software, App Connect Professional V7.5.2 as well as the IBM App Connect on Cloud Service.
- A new administrative REST APIv2 for configuring App Connect Enterprise servers
- All Runtime node properties can be modified using server.conf.yml file
- IBM App Connect professional has 100+ connectors
- If there is any project created in older versions like WMB v6/v7 or anything as integration project, those would be deployed into a default Application project.
- Integration projects are no longer encouraged. Any attempt to subsequent redeploy independent resources will replace the entire content of the default application of an integration server with the new BAR file’s independent resources.
- New REST API testing utility in admin Web UI
- Migration
- Parallel Migration
- Install your ACEv11 environment,
- Configure the environment manually from scratch or reuse command scripts from IIBv10
- Take a branch in version control and then deploy your BAR files to the new environment
- Parallel Migration using extraction to help
- Install your ACEv11 environment
- Use mqsiextractcomponents to configure the v11 environment (this will help to create policies for you from config services for example) to help ensure you don’t forget configuration from your v10 system. Discard the run directory contents, because instead you are going to deploy items to the new system one by one as the next action
- Take a branch in version control and then deploy your BAR files to the new environment.
- Big Bang using extraction
- Install your ACEv11 environment
- Use mqsiextractcomponents to configure the v11 environment (this will help to create policies for you from config services for example) to help ensure you don’t forget configuration from your v10 system. Don’t discard the run directory contents
- Restart the integration node.
- Parallel Migration
- There is no change in the project types. It is same as v10.
- Application (same as v10)
- Library (same as v10)
- Shared Library (same as v10)


How do I capture the messages on the fly in IIB?
IBM has provided lot of ways to capture the messages flowing through our message flows. In this post, we are going to discuss about one of them and it is also one of the most unnoticed.
IIB allows you to capture the messages by enabling monitoring profile or by writing custom subflows or using trace nodes.
The most frequently used one is subflows and now a days people use monitoring profile too a lot. There are companies which do not have logs at all ( don’t know how they survive).
Have you ever used Record & Replay? If not, just google to get some basic idea on how that works.
This post is also utilizing the same Record & Replay concept but it does on the fly. I do not have any database setup to store the messages permanently. Just going with built-in capacity of the Integration node.
Let me put here the sequence of steps to achieve this
- Enable recording
- Enable Injection
- Retrieve Recorded Message
Let me put here the Java APIs used here
public void enableRecording(ExecutionGroupProxy proxy, boolean status) throws ConfigManagerProxyLoggedException, ConfigManagerProxyPropertyNotInitializedException { if (status) { proxy.setTestRecordMode(AttributeConstants.MODE_ENABLED); }else { // clear recorded data and reset server to turn off recording and injection proxy.clearRecordedTestData(); proxy.setTestRecordMode(AttributeConstants.MODE_DISABLED); } enableInjection(proxy, status); } public void enableInjection(ExecutionGroupProxy proxy, boolean status) throws ConfigManagerProxyLoggedException, ConfigManagerProxyPropertyNotInitializedException { if (status) { proxy.setInjectionMode(AttributeConstants.MODE_ENABLED); }else { // clear recorded data and reset server to turn off recording and injection proxy.setInjectionMode(AttributeConstants.MODE_DISABLED); } }
public List<RecordedTestData> retreiveRecordedMessage(MessageFlowProxy mf) throws ConfigManagerProxyPropertyNotInitializedException, ConfigManagerProxyLoggedException { Properties filterProps = new Properties(); String name = getApplication(mf).getName(); // System.out.println(name); if (name != null) { filterProps.setProperty(Checkpoint.PROPERTY_APPLICATION_NAME,name); }else { name = getLibraryProxy(mf).getName(); if (name != null) { filterProps.setProperty(Checkpoint.PROPERTY_LIBRARY_NAME,name); } } // System.out.println(mf.getName()); filterProps.setProperty(Checkpoint.PROPERTY_MESSAGE_FLOW_NAME,mf.getName()); // ExecutionGroupProxy egProxy = mf.getExecutionGroup(); // List<RecordedTestData> dataList = egProxy.getRecordedTestData(filterProps); return mf.getExecutionGroup().getRecordedTestData(filterProps); }
That’s it. Once you enable recording, the message flow automatically turns into like this

The recorded message is here (I’ve a UI to make this easier to read)

Here is the local environment message
<localEnvironment xmlns:iib="http://com.ibm.iib/lt/1.0" iib:parser="MQROOT" iib:injectable="true"> <MQTT> <Input> <Retained iib:valueType="BOOLEAN">FALSE</Retained> <QualityOfService iib:valueType="INTEGER">0</QualityOfService> <Topic iib:valueType="CHARACTER">IBM/IntegrationBus/default/Monitoring/Hello</Topic> <Duplicate iib:valueType="BOOLEAN">FALSE</Duplicate> </Input> </MQTT> </localEnvironment>
And here is the payload
<message xmlns:iib="http://com.ibm.iib/lt/1.0" iib:parser="GENERICROOT" iib:injectable="true"> <Properties iib:parser="GENERICPROPERTYPARSER"> <MessageSet iib:valueType="CHARACTER" iib:elementType="0x03000000"></MessageSet> <MessageType iib:valueType="CHARACTER" iib:elementType="0x03000000"></MessageType> <MessageFormat iib:valueType="CHARACTER" iib:elementType="0x03000000"></MessageFormat> <Encoding iib:valueType="INTEGER">546</Encoding> <CodedCharSetId iib:valueType="INTEGER">5348</CodedCharSetId> <Transactional iib:valueType="BOOLEAN">TRUE</Transactional> <Persistence iib:valueType="BOOLEAN">FALSE</Persistence> <CreationTime iib:valueType="GMTTIMESTAMP">2021-04-13 16:54:58.451</CreationTime> <ExpirationTime iib:valueType="INTEGER">-1</ExpirationTime> <Priority iib:valueType="INTEGER">0</Priority> <ReplyIdentifier iib:valueType="BLOB"></ReplyIdentifier> <ReplyProtocol iib:valueType="CHARACTER">UNKNOWN</ReplyProtocol> <Topic iib:elementType="0x03000000"/> <ContentType iib:valueType="CHARACTER" iib:elementType="0x03000000"></ContentType> <IdentitySourceType iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentitySourceType> <IdentitySourceToken iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentitySourceToken> <IdentitySourcePassword iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentitySourcePassword> <IdentitySourceIssuedBy iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentitySourceIssuedBy> <IdentityMappedType iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentityMappedType> <IdentityMappedToken iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentityMappedToken> <IdentityMappedPassword iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentityMappedPassword> <IdentityMappedIssuedBy iib:valueType="CHARACTER" iib:elementType="0x03000000"></IdentityMappedIssuedBy> </Properties> <XMLNSC iib:parser="xmlnsc"> <wmb:event xmlns:wmb="http://www.ibm.com/xmlns/prod/websphere/messagebroker/6.1.0/monitoring/event"> <wmb:eventPointData> <wmb:eventData> <wmb:productVersion iib:valueType="CHARACTER" iib:elementType="0x03000100">100011</wmb:productVersion> <wmb:eventSchemaVersion iib:valueType="CHARACTER" iib:elementType="0x03000100">6.1.0.3</wmb:eventSchemaVersion> <wmb:eventSourceAddress iib:valueType="CHARACTER" iib:elementType="0x03000100">MQ Input.transaction.Start</wmb:eventSourceAddress> <wmb:eventIdentity> <wmb:eventName iib:valueType="CHARACTER" iib:elementType="0x03000100">OrderReceived</wmb:eventName> </wmb:eventIdentity> <wmb:eventSequence> <wmb:creationTime iib:valueType="CHARACTER" iib:elementType="0x03000100">2020-06-01T02:02:32.402892Z</wmb:creationTime> <wmb:counter iib:valueType="CHARACTER" iib:elementType="0x03000100">1</wmb:counter> </wmb:eventSequence> <wmb:eventCorrelation> <wmb:localTransactionId iib:valueType="CHARACTER" iib:elementType="0x03000100">f8a1af6d-013b-4420-9c1b-baf23d5e10a4-5</wmb:localTransactionId> <wmb:parentTransactionId iib:valueType="CHARACTER" iib:elementType="0x03000100"></wmb:parentTransactionId> <wmb:globalTransactionId iib:valueType="CHARACTER" iib:elementType="0x03000100"></wmb:globalTransactionId> </wmb:eventCorrelation> </wmb:eventData> <wmb:messageFlowData> <wmb:broker> <wmb:name iib:valueType="CHARACTER" iib:elementType="0x03000100">IB10NODE</wmb:name> <wmb:UUID iib:valueType="CHARACTER" iib:elementType="0x03000100">b7d2e6dd-0b36-4728-9015-818133dbeb14</wmb:UUID> </wmb:broker> <wmb:executionGroup> <wmb:name iib:valueType="CHARACTER" iib:elementType="0x03000100">default</wmb:name> <wmb:UUID iib:valueType="CHARACTER" iib:elementType="0x03000100">61704de3-b47c-4b23-b95f-0ffd934fdcb1</wmb:UUID> </wmb:executionGroup> <wmb:messageFlow> <wmb:uniqueFlowName iib:valueType="CHARACTER" iib:elementType="0x03000100">IB10NODE.default.TestMon.TestMon</wmb:uniqueFlowName> <wmb:name iib:valueType="CHARACTER" iib:elementType="0x03000100">TestMon</wmb:name> <wmb:UUID iib:valueType="CHARACTER" iib:elementType="0x03000100">429ff9ef-1c8d-48c1-bf42-99ac3bd247fb</wmb:UUID> <wmb:threadId iib:valueType="CHARACTER" iib:elementType="0x03000100">21980</wmb:threadId> </wmb:messageFlow> <wmb:node> <wmb:nodeLabel iib:valueType="CHARACTER" iib:elementType="0x03000100">MQ Input</wmb:nodeLabel> <wmb:nodeType iib:valueType="CHARACTER" iib:elementType="0x03000100">ComIbmMQInputNode</wmb:nodeType> <wmb:detail iib:valueType="CHARACTER" iib:elementType="0x03000100">IN.Q</wmb:detail> </wmb:node> </wmb:messageFlowData> </wmb:eventPointData> <wmb:applicationData xmlns=""> <wmb:complexContent> <wmb:elementName iib:valueType="CHARACTER" iib:elementType="0x03000100">MQMD</wmb:elementName> <MQMD> <SourceQueue iib:valueType="CHARACTER">IN.Q</SourceQueue> <Transactional iib:valueType="CHARACTER">true</Transactional> <Encoding iib:valueType="CHARACTER">273</Encoding> <CodedCharSetId iib:valueType="CHARACTER">1208</CodedCharSetId> <Format iib:valueType="CHARACTER">MQSTR </Format> <Version iib:valueType="CHARACTER">2</Version> <Report iib:valueType="CHARACTER">0</Report> <MsgType iib:valueType="CHARACTER">8</MsgType> <Expiry iib:valueType="CHARACTER">-1</Expiry> <Feedback iib:valueType="CHARACTER">0</Feedback> <Priority iib:valueType="CHARACTER">0</Priority> <Persistence iib:valueType="CHARACTER">0</Persistence> <MsgId iib:valueType="CHARACTER">414d5120494942763130514d475220204064d15e10000105</MsgId> <CorrelId iib:valueType="CHARACTER">000000000000000000000000000000000000000000000000</CorrelId> <BackoutCount iib:valueType="CHARACTER">0</BackoutCount> <ReplyToQ iib:valueType="CHARACTER"> </ReplyToQ> <ReplyToQMgr iib:valueType="CHARACTER">IIBv10QMGR </ReplyToQMgr> <UserIdentifier iib:valueType="CHARACTER">vaithu </UserIdentifier> <AccountingToken iib:valueType="CHARACTER">160105150000002d74cc5dfa721e73431607412b32030000000000000000000b</AccountingToken> <ApplIdentityData iib:valueType="CHARACTER"> </ApplIdentityData> <PutApplType iib:valueType="CHARACTER">28</PutApplType> <PutApplName iib:valueType="CHARACTER">vaithu</PutApplName> <PutDate iib:valueType="CHARACTER">2020-06-01</PutDate> <PutTime iib:valueType="CHARACTER">02:02:32.480</PutTime> <ApplOriginData iib:valueType="CHARACTER"> </ApplOriginData> <GroupId iib:valueType="CHARACTER">000000000000000000000000000000000000000000000000</GroupId> <MsgSeqNumber iib:valueType="CHARACTER">1</MsgSeqNumber> <Offset iib:valueType="CHARACTER">0</Offset> <MsgFlags iib:valueType="CHARACTER">0</MsgFlags> <OriginalLength iib:valueType="CHARACTER">-1</OriginalLength> </MQMD> </wmb:complexContent> </wmb:applicationData> <wmb:bitstreamData> <wmb:bitstream iib:valueType="CHARACTER">TUQgIAIAAAAAAAAACAAAAP////8AAAAAEQEAALgEAABNUVNUUiAgIAAAAAAAAAAAQU1RIElJQnYxMFFNR1IgIEBk0V4QAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIElJQnYxMFFNR1IgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHN4cDI2NyAgICAgIBYBBRUAAAAtdMxd+nIec0MWB0ErMgMAAAAAAAAAAAALICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAcAAAAZ21haWwuc3Jpbml2YXNhLkFwcGxpY2F0aW9uIDIwMjAwNjAxMDIwMjMyNDggICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA/////zxPcmRlcnM+CiAgIDxPcmRlcj4KICAgICAgPEN1c3RvbWVySUQ+R1JFQUw8L0N1c3RvbWVySUQ+CiAgICAgIDxFbXBsb3llZUlEPjY8L0VtcGxveWVlSUQ+CiAgICAgIDxPcmRlckRhdGU+MTk5Ny0wNS0wNlQwMDowMDowMDwvT3JkZXJEYXRlPgogICAgICA8UmVxdWlyZWREYXRlPjE5OTctMDUtMjBUMDA6MDA6MDA8L1JlcXVpcmVkRGF0ZT4KICAgICAgPFNoaXBJbmZvIFNoaXBwZWREYXRlPSIxOTk3LTA1LTA5VDAwOjAwOjAwIj4KICAgICAgICAgPFNoaXBWaWE+MjwvU2hpcFZpYT4KICAgICAgICAgPEZyZWlnaHQ+My4zNTwvRnJlaWdodD4KICAgICAgICAgPFNoaXBOYW1lPkdyZWF0IExha2VzIEZvb2QgTWFya2V0PC9TaGlwTmFtZT4KICAgICAgICAgPFNoaXBBZGRyZXNzPjI3MzIgQmFrZXIgQmx2ZC48L1NoaXBBZGRyZXNzPgogICAgICAgICA8U2hpcENpdHk+RXVnZW5lPC9TaGlwQ2l0eT4KICAgICAgICAgPFNoaXBSZWdpb24+T1I8L1NoaXBSZWdpb24+CiAgICAgICAgIDxTaGlwUG9zdGFsQ29kZT45NzQwMzwvU2hpcFBvc3RhbENvZGU+CiAgICAgICAgIDxTaGlwQ291bnRyeT5VU0E8L1NoaXBDb3VudHJ5PgogICAgICA8L1NoaXBJbmZvPgogICA8L09yZGVyPgo8L09yZGVycz4=<wmb:encoding iib:valueType="CHARACTER" iib:elementType="0x03000100">base64Binary</wmb:encoding> </wmb:bitstream> </wmb:bitstreamData> </wmb:event> </XMLNSC> </message>
By this way, if you’ve a need to immediately see what is flowing through your messages, simply implement this solution and see the messages on the fly. Once done, clear up the recordings.
If you’re interested to know more about this solution, feel free to contact us at support@vaithu.com. WhatsApp +1 6123058684.