Author |
Message |
Topic: HTML or URL Encoding in WMB |
cool_ziv
Replies: 11 Views: 20168
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 12, 2010 2:28 pm Subject: HTML or URL Encoding in WMB |
But, for URL encoding there is no other way than Java.
Yes (AFAIK), you have to use Java method java.net.URLEncoder.encode(String,'UTF-8') for URL Encoding but for this you have to use JCN instea ... |
Topic: HTML or URL Encoding in WMB |
cool_ziv
Replies: 11 Views: 20168
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 12, 2010 8:32 am Subject: Check previous forum |
Please let me know how to do URL encoding or HTML encoding in WMB.
I know we can do this in Java ( for URL encoding java.net.URLEncoder.encode), Is there any built in CCSID or any other way to do the ... |
Topic: converting messages to URLEncoded format for HTTPRequest |
cool_ziv
Replies: 3 Views: 5336
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 26, 2010 4:48 pm Subject: converting messages to URLEncoded format for HTTPRequest |
Hi mgk, thank you for your reply.
WSDL file is not available for this webservice. I was provided with a sample Java code (which works fine) and I need to implement this webservice using WMB. Like I ... |
Topic: converting messages to URLEncoded format for HTTPRequest |
cool_ziv
Replies: 3 Views: 5336
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Feb 22, 2010 8:24 am Subject: converting messages to URLEncoded format for HTTPRequest |
Any help? |
Topic: converting messages to URLEncoded format for HTTPRequest |
cool_ziv
Replies: 3 Views: 5336
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 18, 2010 7:27 am Subject: converting messages to URLEncoded format for HTTPRequest |
HI,
I've a requirement where I need to make a web service call using HTTPRequest node. The message that I need to send is an XML message.
The header of HTTPRequest will have an additional header
... |
Topic: Passing only numeric values |
cool_ziv
Replies: 8 Views: 6397
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 23, 2009 9:37 am Subject: Passing only numeric values |
This should do the trick.
TRANSLATE(StringVariable,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ','');
or
TRANSLATE(LCASE(StringVariable),'abcdefghijklmnopqrstuvwxyz','');
I used LCASE jus ... |
Topic: Passing only numeric values |
cool_ziv
Replies: 8 Views: 6397
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 23, 2009 9:28 am Subject: Passing only numeric values |
You can look into making use of 'Translate' ESQL string funtion.
Did u check any related forum topics here??
May be this might help you.
http://www.mqseries.net/phpBB2/viewtopic.php?t=31859&am ... |
Topic: XMNLSC parsing error with empty tags, and required |
cool_ziv
Replies: 3 Views: 2504
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 25, 2009 10:18 am Subject: XMNLSC parsing error with empty tags, and required |
The validation error clearly suggests that there should be an attribute 'number' for the element '_EMID'.
In your XML message it is missing.
So
If this XML message is the actual format that you a ... |