Author |
Message |
Topic: Save the Message ID for the reply flow |
KBA
Replies: 8 Views: 9049
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jan 28, 2007 4:44 pm Subject: Save the Message ID for the reply flow |
I understand that, u need to store messageId before sending to HttpRequest , That message id need to assign to ur MQOut out.
Follow like this
U store ur MsgID to LocalEnvironment or Environment , ... |
Topic: No valid body of the document could be found |
KBA
Replies: 7 Views: 6236
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 1:00 pm Subject: No valid body of the document could be found |
Try like this .....
DECLARE Payloadstring CHARACTER;
SET Payloadstring ='Ur xml';
CREATE LASTCHILD OF OutputRoot DOMAIN('XMLNSC') PARSE(Payloadstring CCSID 1208 ENCODING MQENC_NATIVE ); |
Topic: No valid body of the document could be found |
KBA
Replies: 7 Views: 6236
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 12:58 pm Subject: No valid body of the document could be found |
Try like this .....
DECLARE Payloadstring CHARACTER;
SET Payloadstring ='Ur xml';
CREATE LASTCHILD OF OutputRoot DOMAIN('XMLNSC') PARSE(Payloadstring CCSID 1208 ENCODING MQENC_NATIVE ); |
Topic: HTTPinput not listening to URL |
KBA
Replies: 4 Views: 4172
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 12:34 pm Subject: HTTPinput not listening to URL |
follow the bellow
In ur HttpInput Node Url selector = /Service/*
From ur net Tool give the url http://localhost:7080/Service
This should wrk once enter to this node u may get error if u hav ... |
Topic: dynamically placing a message on the destination queue |
KBA
Replies: 5 Views: 5472
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 12:24 pm Subject: dynamically placing a message on the destination queue |
SET OutputLocalEnvironment.Destination.MQDestinationList.DestinationData.queueName ='Qname';
In ur Esql write the above code |
Topic: Sending an HTML http response |
KBA
Replies: 5 Views: 4735
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 12:17 pm Subject: Sending an HTML http response |
Ur HttpInput Domain is XML so it will be .xml file . If u want HTML make it MIME type |
Topic: Sending an HTML http response |
KBA
Replies: 5 Views: 4735
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 26, 2007 12:12 pm Subject: Sending an HTML http response |
SET OutputRoot.XML.HTML.HEAD.TITLE ='A Really Basic Document';
SET OutputRoot.XML.HTML.BODY='This is a really basic document. ';
Make sure that ur HttpInput Domain is XML |