Author |
Message |
Topic: Need help on HttpInput Node |
surenat
Replies: 8 Views: 3135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 24, 2012 3:58 pm Subject: Need help on HttpInput Node |
You cannot have both tomcat and HTTP msg flow listening on the same flow. You have to configure broker to use different port. |
Topic: Need help on HttpInput Node |
surenat
Replies: 8 Views: 3135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 22, 2012 3:26 pm Subject: Need help on HttpInput Node |
Are you trying to host a web service in a flow ? Or trying to call webservice hosted in tomcat? In the second case you need to use httprequest. |
Topic: SELECT STATEMTENT RETURNS NULL AT RANDOM INTERVALS |
surenat
Replies: 2 Views: 2358
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Dec 12, 2005 8:47 pm Subject: SELECT STATEMTENT RETURNS NULL AT RANDOM INTERVALS |
Hi :
While processing 1000 messages, around 20 of them are failing becuase the following the query is returning null:
PASSTHRU('SELECT USER FROM DUAL;');
Is there anybody who had e ... |
Topic: Transform 10MB messages from CSV to Fixed Width. |
surenat
Replies: 12 Views: 7850
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 17, 2004 7:35 am Subject: Transform 10MB messages from CSV to Fixed Width. |
Hi Vallu:
I do not think DOM parser is faster than WMQI XML parser. The only difference I made in plugin was, I did not load incoming CSV message as MRM tree, instead I used java string tokenizat ... |
Topic: Adding Carriage Return to element in compute node |
surenat
Replies: 2 Views: 2646
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 16, 2004 11:46 am Subject: Adding Carriage Return to element in compute node |
Try This:
SET car_ret = CAST(x'0A' AS CHARACTER CCSID InputRoot.Properties.CodedCharSetId);
Set OutputRoot.XML.RootElement.Element.UrElement = SomeValue || car_ret |
Topic: Connecting to oracle database in AIX |
surenat
Replies: 1 Views: 1906
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 16, 2004 7:58 am Subject: Connecting to oracle database in AIX |
You need to make DSN entry in /var/mqsi/odbc/.odbc.ini file. You can refer to WMQI Admin guide for AIX to find how set the properties in .odbc.ini. Before perforimg this step, confirm with your DBA if ... |
Topic: Transform 10MB messages from CSV to Fixed Width. |
surenat
Replies: 12 Views: 7850
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 16, 2004 7:34 am Subject: Transform 10MB messages from CSV to Fixed Width. |
In summary, I wrote some java classes to load CSV into data strcuture(object), and then mapped the data to XML (DOM parser for Java). Integrated this parsing classes with main Java-pluin class.
Le ... |
Topic: Transform 10MB messages from CSV to Fixed Width. |
surenat
Replies: 12 Views: 7850
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 15, 2004 2:31 pm Subject: Transform 10MB messages from CSV to Fixed Width. |
Hi Vallu:
I had experienced the same problem. I had a situation where I need to convert 1MB CSV message to XML. Using normal plain ESQL coding, it took 10 mins to process one message. After that ... |
Topic: Extract first 5 bytes |
surenat
Replies: 4 Views: 3095
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 16, 2003 3:07 pm Subject: Extract first 5 bytes |
I am not clear about your question, can u give little more information, like the XML message you are using. |
Topic: WMQI V2.1 Data source userid... |
surenat
Replies: 1 Views: 2290
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 16, 2003 3:01 pm Subject: WMQI V2.1 Data source userid... |
I used the same strategy to change the lilpath. I tried to modify /var/wmqi/registry/BROKER_NAME/LilPath. It did not work.
I ended up using mqsichangebroker command to change the lil path. |
Topic: SYSTEM.BROKER.IPC QUEUES |
surenat
Replies: 1 Views: 3189
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 10, 2003 7:57 am Subject: SYSTEM.BROKER.IPC QUEUES |
I had the same problem, I found this on the IBM website
-----------------------------------------------------------
The IPC (Inter Process Communication) Queues are used for internal
pub/sub com ... |
Topic: Exam fees??? |
surenat
Replies: 1 Views: 1970
|
Forum: IBM MQ Java / JMS Posted: Mon Jan 06, 2003 6:43 am Subject: Exam fees??? |
I think $120 for each one of them.
-Suresh |
Topic: MRM to XML Processing Time |
surenat
Replies: 2 Views: 2784
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 25, 2002 8:51 am Subject: MRM to XML Processing Time |
Kiran:
I have I tried moving cardinality function out of the loop & using MRM-CWF , still I do not see any improvement in performance. Please post any ideas i can try on.
-Thanks
Su ... |
Topic: MRM to XML Processing Time |
surenat
Replies: 2 Views: 2784
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 25, 2002 7:49 am Subject: MRM to XML Processing Time |
Hi,
I have flow which tranform comma-delimited(MRM) to XML. Input comma delimited message size is 600k. Inside this message there is compund elements which repeats around 20,000 times. The foll ... |
Topic: Do not need class and index values in the output message |
surenat
Replies: 2 Views: 2705
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 23, 2002 6:59 am Subject: Do not need class and index values in the output message |
I think I missed removal of index, try this out !
SET "OutputRoot"."XML"."COMMIT_CNTRL_TRAN_CHECK_UPDATE"."MsgData"."Transaction"."COMCNTL_TRN ... |