Author |
Message |
Topic: ESQL: Parsing a Character (XML string) |
special_agent_Queue
Replies: 7 Views: 32107
|
Forum: General Discussion Posted: Thu Jun 28, 2007 4:52 am Subject: ESQL: Parsing a Character (XML string) |
check out the CREATE...PARSE statement. |
Topic: Attribute disappear in a REFERENCE |
special_agent_Queue
Replies: 2 Views: 2944
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jun 27, 2007 6:06 am Subject: Attribute disappear in a REFERENCE |
From experience, sometimes the debugger doesn't show attributes. Most of the time it is when there are no other child elements present for that particular field. Adding the HeaderType child element ... |
Topic: Namespace manipulation in XMLNSC parser |
special_agent_Queue
Replies: 7 Views: 5325
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jun 06, 2007 10:38 am Subject: Namespace manipulation in XMLNSC parser |
I don't think nobody wants to remove namespaces from the message, just one of the namespace declarations and if so, there wouldn't be any of that namespace in the message itself.
What would probabl ... |
Topic: Leading zero's problem |
special_agent_Queue
Replies: 5 Views: 5000
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 30, 2007 10:09 am Subject: Leading zero's problem |
How are your padding characters set? |
Topic: Whitespace characters in XML |
special_agent_Queue
Replies: 7 Views: 7636
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 26, 2007 9:47 am Subject: Whitespace characters in XML |
To raise a PMR you need to contact IBM support. |
Topic: ebcdic to ascii conversion or occurs depending on issue |
special_agent_Queue
Replies: 8 Views: 8295
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 12, 2007 4:46 am Subject: ebcdic to ascii conversion or occurs depending on issue |
I was able to solve this by using an RCD to change the message into a blob, and adding a compute node where it does a CREATE.. PARSE to create the MRM message.
I think this error was deceiving. It ... |
Topic: Problem while calling a procedure in a separate ESQL file |
special_agent_Queue
Replies: 2 Views: 2864
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 12, 2007 4:40 am Subject: Problem while calling a procedure in a separate ESQL file |
We are doing the same thing, and ours works fine. We put our procedures in different ESQL files in a different project and then referenced that project.
Have you tried rebuilding and/or cleaning t ... |
Topic: Execution Group Mystery |
special_agent_Queue
Replies: 5 Views: 5113
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 11, 2007 8:01 am Subject: Execution Group Mystery |
Yes. Do a search for phantom execution groups and you will see a number of posts about this, as well as the solution. |
Topic: ebcdic to ascii conversion or occurs depending on issue |
special_agent_Queue
Replies: 8 Views: 8295
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 09, 2007 5:11 am Subject: ebcdic to ascii conversion or occurs depending on issue |
Here's the thing - The traces don't get that far. The first one is what I get just trying to run it through (just after the input node). The 2nd one is what I get when I run it through with the deb ... |
Topic: ebcdic to ascii conversion or occurs depending on issue |
special_agent_Queue
Replies: 8 Views: 8295
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Apr 06, 2007 7:22 am Subject: ebcdic to ascii conversion or occurs depending on issue |
Thanks. I get that it is a problem with my mapping.
Unfortunately, I've spent a couple of days looking into this, but I cannot figure out why. Can anyone help?
If you need more info, let me kn ... |
Topic: ebcdic to ascii conversion or occurs depending on issue |
special_agent_Queue
Replies: 8 Views: 8295
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Apr 06, 2007 4:45 am Subject: ebcdic to ascii conversion or occurs depending on issue |
Thanks for your reply. I did not think it was a conversion issue.
I believe I am using integers: the hex 'F0F1' (EBCDIC) = hex '3031' (ASCII) = 01.
Can anyone offer some more advice? |
Topic: ebcdic to ascii conversion or occurs depending on issue |
special_agent_Queue
Replies: 8 Views: 8295
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 05, 2007 10:52 am Subject: ebcdic to ascii conversion or occurs depending on issue |
My message flow takes in a flat CWF file created from COBOL. In this message, there is a field called COMMAND_CNT which is defined in the message set definition file as follows:
Physical Type: Exter ... |
Topic: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
special_agent_Queue
Replies: 14 Views: 14354
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 27, 2007 6:23 am Subject: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
On a related subject.
IF FIELDTYPE(theElement) = NameValue THEN set new field equal to this one.
ELSEIF FIELDTYPE(theElement) = Name THEN set new field = NULL or spaces. If it has ... |
Topic: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
special_agent_Queue
Replies: 14 Views: 14354
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 26, 2007 9:15 am Subject: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
Hi msukup,
I have seen the following bug with the xmlnsc parser, which caused me to stop using it in favor of xmlns until it matures a bit:
if an element evaluates to "null", then it see ... |
Topic: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
special_agent_Queue
Replies: 14 Views: 14354
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 26, 2007 9:11 am Subject: XMLNSC Declare Reference bug? Navigate XML Tree 6.0.2 |
Is there a less repetitive way of having to repeat 'someNS:' for every XML element?
Make the input message not have a default namespace.
Also, the someNS was only a suggestion, you don't have to ... |