Author |
Message |
Topic: how to use MQCMD_INQUIRE_CHANNEL_STATUS |
jacquesvdm
Replies: 20 Views: 21040
|
Forum: General Discussion Posted: Tue Oct 01, 2013 12:02 am Subject: difference is result of PCF and mqsc command |
Hi
I am trying to get exactly the same display using PCF commands than using mqsc to display channel status information.
When performing the mqsc command
dis chstatus(*)
I get a list of active ... |
Topic: MQOutput Node question |
jacquesvdm
Replies: 14 Views: 6636
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 16, 2012 11:47 pm Subject: MQOutput Node question |
This is how I did it
DECLARE v_corrID CHAR 'any crap I want';
SET v_corrID = v_corrID || REPLICATE('0',(24-LENGTH(v_corrID)));
SET CorrelId = CAST(v_corrID AS BLOB CCSID InputRoot.Properties.Code ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 11, 2012 1:16 am Subject: TDS to xml |
I used the litteral value '' as well as "" and none of them worked. You were correct, my understanding was wrong.
Mayby the info centre should not read enter '' in the ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 10, 2012 10:29 pm Subject: TDS to xml |
I have encodingNullValue="" and the result is the same.
I have installed Fix pack 004 and sad to say that it made no difference to how NULL values are handled within the TDS. I will log a ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 10, 2012 7:52 am Subject: TDS to xml |
Hi Kimbert
I notice that a new FP 4 was release 7 May and one of the fixes refers to "110621 MRM TDS parser not handling null data". I am hoping that this will solve my problem.
I will le ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 10, 2012 4:00 am Subject: TDS to xml |
Hi
Unfortunately I get the same result with brand new flow and message set.
Here the full message set, I must be missing something or it is a bug in broker 7003.
<?xml version="1.0&qu ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 10, 2012 2:30 am Subject: TDS to xml |
Hi
The tags are missing in xml as well as in the MRM message tree when I debug.
I will do what you sugest and come back to you.
I could not pick up any problem in the tracefile but like you said i ... |
Topic: TDS to xml |
jacquesvdm
Replies: 14 Views: 7094
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 09, 2012 9:58 pm Subject: TDS to xml |
I know this is an old thread but my problem is the same as originally described.
I have configured the message set exactly as described in the infocentre and it still omits empty fields. Th ... |
Topic: Message Broker 8 Custom Nodes |
jacquesvdm
Replies: 25 Views: 13619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Mar 15, 2012 9:31 pm Subject: Message Broker 8 Custom Nodes |
Hi all
Thanks for the healthy debate, at the end I do still like the Web services idea as the PABX system most likely would not co-exist with the broker instance. I also do not want a "badly wri ... |
Topic: Message Broker 8 Custom Nodes |
jacquesvdm
Replies: 25 Views: 13619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Mar 15, 2012 5:25 am Subject: Message Broker 8 Custom Nodes |
Hi MQJeff
That is also valid, thanks for all the valuable input.
Regards |
Topic: Message Broker 8 Custom Nodes |
jacquesvdm
Replies: 25 Views: 13619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Mar 15, 2012 5:09 am Subject: Message Broker 8 Custom Nodes |
That is an excellent sugestion.
Thanks for that. |
Topic: Message Broker 8 Custom Nodes |
jacquesvdm
Replies: 25 Views: 13619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Mar 15, 2012 5:03 am Subject: Message Broker 8 Custom Nodes |
Hi
I have to use third party IP's soon which are written in C++ and just need to assess the options available. I wanted to develop plugin nodes for this purpose (e.g PABX communication node) which ca ... |
Topic: Message Broker 8 Custom Nodes |
jacquesvdm
Replies: 25 Views: 13619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 14, 2012 10:26 pm Subject: Message Broker 8 Custom Nodes |
Hi
Do anybody know if it would now be possible in WMB8 to code custom nodes in DOTNET C# or C++. Previously only Java and C was supported.
I know you can now invoke DOTNET classes using the new D ... |
Topic: Parsing Text to CSV within ESQL |
jacquesvdm
Replies: 17 Views: 14341
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 29, 2012 9:38 am Subject: Parsing Text to CSV within ESQL |
It actually did help, as I saw the values been matched which were slightly different than the data pattern. The matching pattern for example for an event type 3 would have been ''3'' as displayed with ... |
Topic: Parsing Text to CSV within ESQL |
jacquesvdm
Replies: 17 Views: 14341
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 28, 2012 10:14 pm Subject: Parsing Text to CSV within ESQL |
Hi all who actualy assisted
I found the solution to my problem
you have to use a choice group with tag delimeted, Delimeter <CR><LF> and tag seperator = , (comma).
Then define new eleme ... |