Author |
Message |
Topic: Broker Entries not written to user.log file Solaris 10 |
goldym
Replies: 3 Views: 4424
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 19, 2007 6:17 am Subject: Broker Entries not written to user.log file Solaris 10 |
Did you touch the file user.log. Is the user.log file created if not, you would have to go to that directory and touch the file.
Yes I touched the file and it was created. |
Topic: Broker Entries not written to user.log file Solaris 10 |
goldym
Replies: 3 Views: 4424
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 18, 2007 12:55 pm Subject: Broker Entries not written to user.log file Solaris 10 |
No broker events are being written the user.log file. We added the following line to the file /etc/syslog.conf being careful to add a TAB instead of a space user.debug /var/mqsi/user.log killed t ... |
Topic: Execution Group Mystery |
goldym
Replies: 5 Views: 5108
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 12, 2007 5:38 am Subject: Execution Group Mystery |
So this was fixed in version 6.0.0.3 version of the broker? Any reasons why this occurs? Are there any best practices for removing exeuction groups, should you remove the children first, or detach th ... |
Topic: Execution Group Mystery |
goldym
Replies: 5 Views: 5108
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 11, 2007 8:59 am Subject: Execution Group Mystery |
I saw some resolutions however there is no reason why this occurs in any of the post. Does anyone know why?
Is it better to use the mqsideleexecutiongroups command as opposed to the toolkit? Or d ... |
Topic: Execution Group Mystery |
goldym
Replies: 5 Views: 5108
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 11, 2007 7:52 am Subject: Execution Group Mystery |
Has anyone seen this issue where you delete an execution group stop and restart the broker but the DataFlowEngine is still running for that Excecution Group?
I had three execution groups delete one ... |
Topic: LENGTH FUNCTION |
goldym
Replies: 16 Views: 16885
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 13, 2007 9:16 am Subject: LENGTH FUNCTION |
Read the message as BLOB, ask for the length of InputRoot.BLOB.BLOB and then parse the message as MRM...
Does you know how I would "parse the message as MRM or BLOB" in a java compute n ... |
Topic: LENGTH FUNCTION |
goldym
Replies: 16 Views: 16885
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 13, 2007 7:58 am Subject: LENGTH FUNCTION |
Read the message as BLOB, ask for the length of InputRoot.BLOB.BLOB and then parse the message as MRM...
Does you know how I would "parse the message as MRM or BLOB" in a java compute n ... |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 28, 2007 6:49 am Subject: CAST Function |
Your solution is far too complicated. Would this work?
- ASBITSTREAM to obtain a BLOB
- Manipulate the BLOB to insert the correct length.
I know it means doing a little bit of parsing in your ESQL, ... |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 28, 2007 6:44 am Subject: CAST Function |
What happens if the length field causes the message to go from 4 bytes long to 5 bytes long?
Doesn't matter, none of the fields are fixed length they are all variable length. |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 28, 2007 6:34 am Subject: CAST Function |
So this is the message that I create I map from an incoming XML to this TDS formatted message (using mapping node). I think my message set by default populates the length with a 0, not sure why. 1.2 ... |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 27, 2007 3:34 pm Subject: CAST Function |
Please - just give us a short example message. It makes everything so much clearer.
Sorry here is a small example
1.200:32*1.201:111*1.202:JONES; |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 27, 2007 1:52 pm Subject: CAST Function |
Is the length field stored as character data, or binary/integer data -
The Length field is being stored as Integer data I am using the LENGTH function to calculate
Is the length field tagged on ... |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 27, 2007 1:40 pm Subject: CAST Function |
The length field and all the other fields are variable length fields not fixed.
[quote="jefflowrey"]Is the length field a variable length field? Are any of the fields that precede lengt ... |
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 27, 2007 1:35 pm Subject: CAST Function |
fjb_saper - I need to calculate the total length of the TDS record twice because I need the total length including the length field. Do you have any suggestions?
Its not XML its TDS.
|
Topic: CAST Function |
goldym
Replies: 18 Views: 11937
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 27, 2007 11:15 am Subject: CAST Function |
I would use ASBITSTREAM and CREATE FIELD... PARSE to Change the domain from MRM to BLOB and the reverse?
[quote="jefflowrey"]You can't do this with CAST at all.
You need to use ASBIT ... |