Author |
Message |
Topic: File Output node CSV message issues |
my_mqmb
Replies: 1 Views: 2627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Oct 14, 2018 1:33 am Subject: File Output node CSV message issues |
Hi All,
I am sending a CSV value to a fileoutput node and the end result in the linux system when i open the text file is showing chinese character ..
But within linux when i do a cat the csv te ... |
Topic: How to navigate to every field value in an XML ? |
my_mqmb
Replies: 21 Views: 12458
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 22, 2015 5:17 am Subject: How to navigate to every field value in an XML ? |
And what is your definition of "non English character" ?
Sometimes we are getting arabic characters in the data .
I need to scan through the entire XML . I am looking for the nav ... |
Topic: How to navigate to every field value in an XML ? |
my_mqmb
Replies: 21 Views: 12458
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 22, 2015 3:51 am Subject: How to navigate to every field value in an XML ? |
I need to check for any non English character in any tags value and then change the encoding accordingly . |
Topic: How to navigate to every field value in an XML ? |
my_mqmb
Replies: 21 Views: 12458
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 22, 2015 12:07 am Subject: How to navigate to every field value in an XML ? |
I have requirement of navigating to every XML tag's value if it and doing some operation on it , like searching for a character in it ?
How to navigate and reach every value ? What is the best ... |
Topic: Changing namespaces during runtime ? |
my_mqmb
Replies: 10 Views: 11441
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jun 16, 2014 6:17 am Subject: Changing namespaces during runtime ? |
And it's not the spelling of OutputRoot that is the point, but the omission of curly braces.
My code output :
<NS1:createRequest xmlns:NS1="dex1"> <requestUID>66</requ ... |
Topic: Changing namespaces during runtime ? |
my_mqmb
Replies: 10 Views: 11441
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jun 16, 2014 3:21 am Subject: Changing namespaces during runtime ? |
I thing i dint explain properly .
say that i have 100 lines of code .
Based on some condition i need to just switch to other namespace in the output . so i dont want to make it 200 lines of code ... |
Topic: Changing namespaces during runtime ? |
my_mqmb
Replies: 10 Views: 11441
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jun 16, 2014 2:27 am Subject: Changing namespaces during runtime ? |
I want to change the namespace prefix in a line of esql code dynamically based on some condition.
for eg :
DECLARE top1 NAMESPACE 'http://lto.com/dis/schemas/issuerinterface1.0';
... |
Topic: FileRead Node |
my_mqmb
Replies: 1 Views: 2008
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Dec 26, 2013 12:37 am Subject: FileRead Node |
My question is that can a fileread node read multiple files at one go from folder by using the wildcard for filename as * ?
or does it do this one by one ?
say for example i have placed a pdf fil ... |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Dec 15, 2013 2:42 am Subject: Adobe reader not able to read PDF sent by email node. |
finally i achieved it ... anyhow.
Great. would you care to share your solution with us so that others can learn from it?
I dropped the MIME thing and use a simple 2 line code to pick ... |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Dec 12, 2013 3:05 am Subject: Adobe reader not able to read PDF sent by email node. |
finally i achieved it ... anyhow.  |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 11, 2013 5:15 am Subject: Adobe reader not able to read PDF sent by email node. |
In the time that you have been posting, you could have:-
Created a test flow that
1) reads a PDF from a file
2) formats a messages and sends it to the Emailoutput node, sending it to yoursel ... |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 10, 2013 3:34 am Subject: Re: Adobe reader not able to read PDF sent by email node. |
CREATE FIELD P2."Content-Type" TYPE NameValue VALUE 'application/pdf; name=LCTrade.pdf';
This line does not make the broker convert data into pdf format. It's for informing the recei ... |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 10, 2013 12:07 am Subject: Adobe reader not able to read PDF sent by email node. |
is not P2.Data.BLOB.BLOB a binary stream in PDF format or am i missing somethingYou are missing something.
The BLOB data type is exactly like a BLOB in a database. In your case, it will contain an ar ... |
Topic: Not able to Read PDF file sent from EmailOutput Node |
my_mqmb
Replies: 29 Views: 38799
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 10, 2013 12:00 am Subject: Not able to Read PDF file sent from EmailOutput Node |
You need to create a BLOB with a PDF format, WMB doesn't support that. Alternativelyyou could use a Java library like iText integrated with a Java Node.
http://en.wikipedia.org/wiki/Portable_Docume ... |
Topic: Adobe reader not able to read PDF sent by email node. |
my_mqmb
Replies: 13 Views: 10215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Dec 09, 2013 5:03 am Subject: Adobe reader not able to read PDF sent by email node. |
CREATE FIELD P2."Content-Type" TYPE NameValue VALUE 'application/pdf; name=LCTrade.pdf';
CREATE FIELD P2."Content-Transfer-Encoding" TYPE NameValue VALUE 'base64';
--CRE ... |