Author |
Message |
Topic: IBM Websphere Messasge Broker v 8 Service |
New_2_IIB9
Replies: 6 Views: 3369
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Apr 26, 2015 10:13 pm Subject: IBM Websphere Messasge Broker v 8 Service |
you can have multiple operation on single wsdl and you could use a SOAP Extract node to create the lable and then depending on lable you can call the operation and further transformation on that opera ... |
Topic: Searching an XML message based on attribute |
New_2_IIB9
Replies: 2 Views: 2789
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 09, 2015 2:06 am Subject: Searching an XML message based on attribute |
use Cardinality Function in esql
http://www-01.ibm.com/support/knowledgecenter/SSKM8N_8.0.0/com.ibm.etools.mft.doc/ak05530_.htm |
Topic: setting multiple parameter in HTTP Post URL |
New_2_IIB9
Replies: 9 Views: 14755
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 17, 2014 9:14 pm Subject: setting multiple parameter in HTTP Post URL |
mqjeff
Don't concatenate them.
Use the OutputLocalEnvironment.Destination.HTTP.QueryString
how the Query String gonna work here , i have send mutiple values of "itemID" in comm ... |
Topic: setting multiple parameter in HTTP Post URL |
New_2_IIB9
Replies: 9 Views: 14755
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 17, 2014 11:24 am Subject: setting multiple parameter in HTTP Post URL |
Thanks Vitor for reply , i will try the reference for array.
My suspicion is that you loaded this into an array in the Environment tree because you wanted to simply concatenate the array with the U ... |
Topic: setting multiple parameter in HTTP Post URL |
New_2_IIB9
Replies: 9 Views: 14755
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 17, 2014 10:44 am Subject: setting multiple parameter in HTTP Post URL |
I did cardinality of Input like below,
DECLARE I INT 1;
DECLARE J INT;
SET J = CARDINALITY(InputRoot.MRM.ITEM_DETAILS[]);
WHILE I < 50 DO
SET Environment.Variables.i ... |
Topic: setting multiple parameter in HTTP Post URL |
New_2_IIB9
Replies: 9 Views: 14755
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 17, 2014 10:32 am Subject: setting multiple parameter in HTTP Post URL |
Hi All,
I have successfully configured the flow for HTTP Post with hard-coding it on http URL using "SET OutputLocalEnvironment.Destination.HTTP.RequestURL " and it is working fine for that ... |