ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE

Post new topic  Reply to topic
 Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE « View previous topic :: View next topic » 
Author Message
scravr
PostPosted: Fri Feb 25, 2011 9:44 am    Post subject: Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE Reply with quote

Partisan

Joined: 03 Apr 2003
Posts: 391
Location: NY NY USA 10021

HI ALL,


Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE

I create Message set #1 from a COBOL copybook, and then manually added XML1 format as XMLNSC.
All elements are mandatory for both Binary1 and XML1.

Message set #2 was create from an XSD file as XMLNSC format. Few elements are not mandatory.

A flow has MQInput getting messages as BLOB domain with Parse On Demand.
Compute node verifies messages based on configured CCSID/Encoding on XML (file). That means: each message type/set has configuration on XML (custom service definition).
Compute node have some more logic…..then message is sent to MQOutput.

Here is the compute node code describing what is done when Validation is YES/NO.

If Validate = 'YES' Then
-- validate content and value now, throw an exception if the parse fails
DECLARE opts1 Int BitOr(RootBitStream,ValidateImmediate,ValidateContent);
DECLARE opts2 Int BitOr(RootBitStream,ValidateImmediate,ValidateContent,ValidateExceptionList);
DECLARE optsM Int BitOr(RootBitStream,ValidateImmediate,ValidateContentAndValue,ValidateExceptionList);
DECLARE inCCSID INT 819; -- force it to MQMD – hardcode just for testing
DECLARE inEncoding INT 273; -- force it to MQMD – hardcode just for testing
Create LastChild Of EnvRef.TempParse Domain (cfgRef.InputMsgDomain) – domain (XMLNSC) from CSD
Parse(InRootRef.BLOB.BLOB ENCODING inEncoding CCSID inCCSID – CCSDI/Encoding from MQMD
SET MsgSet TYPE MsgType FORMAT MsgFmt OPTIONS opts1); -- Set/Type/Format from CSD
If (LastMove(tempParseRef)) Then –- if parse OK then exit
return;
Else -– not parsed then try parse with CCSID/Encoding from CSD
Create LastChild Of EnvRef.TempParse Domain (cfgRef.InputMsgDomain)
Parse(InRootRef.BLOB.BLOB ENCODING cfgRef.InputMsgEncoding
CCSID cfgRef.InputMsgCCSID SET MsgSet TYPE MsgType FORMAT MsgFmt
OPTIONS opts2);
End If;
Else –- validation=NO ----- just parse as is
Create LastChild Of EnvRef.TempParse Domain(cfgRef.InputMsgDomain)
Parse(InRootRef.BLOB.BLOB ENCODING InRootRef.Properties.Encoding
CCSID InRootRef.Properties.CodedCharSetId
SET MsgSet TYPE MsgType FORMAT MsgFmt);
End If;

The Validation = NO works fine for both message sets.

For Validation = YES I am trying to parse first with what comes on MQMD (as the forced values) and if it parsed then return. If it dose not parse, I like to get control back and try parse with what comes on XML CSD (custom service definition).

Testing on windows XP the parse always fails for both message sets.
I am using mqmon to Load XML messages as:
Errors are like BIP5025, 5011, 5032, 5018……


* QLOAD Version:1.7 Created:Tue Nov 23 09:46:40 2010
* Queue = FBOC_PB_PBS_TRADE_P

A VER 2
A RPT 0
A MST 8
A EXP -1
A FDB 0
A ENC 273
A CCS 819
A FMT MQHRF2
A PRI 4
A PER 0
A MSI 414D51205553554954553033202020204CE302CD204A890B
A COI 414D51205553554954553033202020204CE302CD204A890C
A BOC 0
A RTQ XXXX_XX_XXX_XXXXX
A RTM YYYYYYY
A USR pbsuat
A ACC 0000000000000000000000000000000000000000000000000000000000000000
A AID
A PAT 28
A PAN MQSeries Client for Java
A PTD 20101119
A PTT 15395675
A AOD
A GRP 000000000000000000000000000000000000000000000000
A MSQ 1
A OFF 0
A MSF 0
A ORL -1
S "RFH "
X 000000020000019400000111000004B8
S "MQSTR "
X 00000000000004B8000000
S " <mcd><Msd>jms_text</Msd></mcd> "
X 00000060
S "<jms><Dst>queue://YYYYYY/XXX_XXX_XXX_XXX</"
S "Dst><Tms>1290181196752</Tms><Dlv>2</Dlv></jms> "
X 000000E4
S "<usr>"
S "<OPTR_CXT>Uuid=f7dxxxxxxx-11dxxxx5-ece7"
S "8xxxxxx;SerCls=-1;ReqCls=;Nme=;Address=0.0.0.0"
S ";Appn=;Tran=;Flags=32;Calling=4xxxxx-3"
S "983-11de-b61f-xxxxxxxxxxx;</OPTR_CXT><Topic>/ms"
S "g/ccc/ccc/vvvv/vvvv/bbbbbe</Topic></usr>"
S "<?xml version=~"1.0~" encoding=~"UTF-8~" standal"
S "one"
S "=~"yes~"?><vvvvv_gggggg>"
S "<fff_fff>1</fff_fff>"
S "<ffff_fff> </ffff_fff>"
…
…
…



Any ideas how to get validation to work?
Back to top
View user's profile Send private message Send e-mail MSN Messenger
kimbert
PostPosted: Fri Feb 25, 2011 11:39 am    Post subject: Reply with quote

Jedi Council

Joined: 29 Jul 2003
Posts: 5542
Location: Southampton

A few comments first, if you don't mind:
Quote:
I create Message set #1 from a COBOL copybook, and then manually added XML1 format as XMLNSC.
The XML1 physical format is completely redundant. XMLNSC completely ignores MRM XML physical formats.
Quote:
Message set #2 was create from an XSD file as XMLNSC format.
You mean, message set #2 has its 'Primary message domain' set to 'XMLNSC'?
Code:
If (LastMove(tempParseRef)) Then
That's one way to do it. Another way would be to declare an error handler in your ESQL - I think I would prefer to do it that way.
Quote:
Errors are like BIP5025, 5011, 5032, 5018……
Please quote the full text of BIP5025. Numbers are not very helpful to most readers. There have been dozens of posts explaining how to get the full text of the error message.
Quote:
Any ideas how to get validation to work?
Almost certainly - but we will need the error text first.
Back to top
View user's profile Send private message
scravr
PostPosted: Fri Feb 25, 2011 12:23 pm    Post subject: Reply with quote

Partisan

Joined: 03 Apr 2003
Posts: 391
Location: NY NY USA 10021

2 more points of info:
1. Flow should be able run on XP and LINUX boxes.
2. Flow gets messages from OS390, LINUX, VAX, Alfa, AS400.
That means it needs to be able to handel ASCII + EBCDIC, and all CCSIDs + Encodings.





To your points:

1. YES. XML1 is not required, but I add it to have all my message sets with the same/both "Binary1" and "XML1".
I have many message sets that needs both FixLength COBOL and XMLNSC parsing; depend on configurations.


2. I guess by 'Primary message domain' you mean 'Default message domain' ?

For msg#1 its MRM and supported MRM + XMLNSC checked.

For MsgSet#2 its "MRM" ; also have Supported domains MRM + SOAP + XMLNSC checked. (SOAP is check since this is Envelope msg type)

I have message set #3 with primary/default set to XMLNSC and supported MRM + XMLNSC checked.


Also what's the segnificate of 'Primary message domain' ???
I am parsing based on configuration domain/set/type/format. The configuration parameters are input from XML service definition that developer prepared based on message sets.

3. "If (LastMove(tempParseRef)) Then"
This line never executed since the parse gets BIP.... errors and then flow stops/crush.

How can I get the parse to NOT crush on validation and return control to next line ? (see the diff between opts1 and opts2)

What error handler? Samples?

The compute node has Validation set to None.



4. BIP5025 gets diff errors each time:

4.1:
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5011 - XML Namespace not allowed for an element unless in the XMLNS domain.

Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Text:CHARACTER:1
Insert
Type:INTEGER:2
Text:CHARACTER:2096
Insert
Type:INTE...






4.2:
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5011
Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Text:CHARACTER:1
Insert
Type:INTEGER:2
Text:CHARACTER:2096
Insert
Type:INTE...








4.3:
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5032
Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Back to top
View user's profile Send private message Send e-mail MSN Messenger
rekarm01
PostPosted: Sun Feb 27, 2011 5:42 am    Post subject: Re: Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 1415

scravr wrote:
Code:
Parse(... ENCODING inEncoding CCSID inCCSID ...)
Parse(... ENCODING cfgRef.InputMsgEncoding CCSID cfgRef.InputMsgCCSID ...)
Parse(... ENCODING InRootRef.Properties.Encoding CCSID InRootRef.Properties.CodedCharSetId ...)

There's only one correct CCSID and ENCODING per input message. It should be in InputProperties.

scravr wrote:
Code:
If (LastMove(tempParseRef)) Then –- if parse OK then exit

There doesn't seem to be a preceding "MOVE" statement, or "AS" clause, or "DECLARE REFERENCE TO" statement posted; that makes it difficult to determine what this IF statement is actually doing. But it certainly won't catch a parsing exception.

scravr wrote:
How can I get the parse to NOT crush on validation and return control to next line ?

kimbert wrote:
declare an error handler in your ESQL - I think I would prefer to do it that way.

scravr wrote:
What error handler? Samples?

InfoCenter -> "DECLARE HANDLER statement"

kimbert wrote:
Please quote the full text of BIP5025. Numbers are not very helpful to most readers.

scravr wrote:
Insert
Type:INTE...

That's almost barely enough information. Not quite, though. The full text would be better - without the "...".

scravr wrote:
That means it needs to be able to handel ASCII + EBCDIC, and all CCSIDs + Encodings.

As long as the MQ headers provide the correct information, this shouldn't be difficult.
Back to top
View user's profile Send private message
smdavies99
PostPosted: Sun Feb 27, 2011 10:22 am    Post subject: Re: Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE Reply with quote

Jedi Council

Joined: 10 Feb 2003
Posts: 6076
Location: Somewhere over the Rainbow this side of Never-never land.

rekarm01 wrote:

As long as the MQ headers provide the correct information, this shouldn't be difficult.

What my esteemed colleague means is that the Input MQMD CCSID accurately matches the CCSID of the contents on the Message Body.
If they don't any parsing is not going very far especially with EBCIDIC CCSID's.
_________________
WMQ User since 1999
MQSI/WBI/WMB/'Thingy' User since 2002
Linux user since 1995

Every time you reinvent the wheel the more square it gets (anon). If in doubt think and investigate before you ask silly questions.
Back to top
View user's profile Send private message
kimbert
PostPosted: Sun Feb 27, 2011 12:50 pm    Post subject: Reply with quote

Jedi Council

Joined: 29 Jul 2003
Posts: 5542
Location: Southampton

Quote:
what's the significance of 'Primary message domain' ???
'Default message domain' controls how the toolkit behaves. Different parsers build different styles of message tree, so the ESQL code assist and the Mapping node both need to take account of the differences.
The entire list of domains ( default and 'Other supported' ) controls what gets put into the BAR file. If 'MRM' is in the list, you will get a .dictionary file for each message set. If 'XMLNSC' or 'SOAP' are in the list, you will get a .xsdzip for each message set.

re: the errors, I agree with rekarm01. More information please. I did ask for the full text of the error messages. If you don't know how to get the full text then you will struggle to debug *any* message flow.
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Sun Feb 27, 2011 3:41 pm    Post subject: Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

Quote:
Code:
4.1:
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5011 - XML Namespace not allowed for an element unless in the XMLNS domain.


It looks like you are using the deprecated XML domain and not XMLNS or XMLNSC or MRM domain. Those would support the namespace.

Have fun
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
scravr
PostPosted: Mon Feb 28, 2011 6:00 am    Post subject: Reply with quote

Partisan

Joined: 03 Apr 2003
Posts: 391
Location: NY NY USA 10021

In debug the CCSID is not the same for Properties, MQMD, and RFH2
Properties: CCSID/Encoding are 1208/273
MQMD: 819/273
RFH2: 1208/273

Which is the correct one?

To smdavies99: Are you saying to stick with the MQMD values?


To rekarm01: The tempParseRef is created by the Create LastChild Of EnvRef.TempParse Domain….


To fjb_saper: On message sets I have MRM and XMLNCS domains only.
This error message is completely strange !!!


The errors I put were the last on the long list of process trace.
Here are few as they come on debugger:


ExceptionList
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbDataFlowNode.cpp
Line:INTEGER:1073
Function:CHARACTER:ImbDataFlowNode::createExceptionList
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Node throwing exception
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbComputeNode.cpp
Line:INTEGER:489
Function:CHARACTER:ImbComputeNode::evaluate
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Caught exception and rethrowing
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main
Insert
Type:INTEGER:5
Text:CHARACTER:6.3
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = EVAL(eStr);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SERVICE_PUB_BASIC_MAIN
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN
Insert
Type:INTEGER:5
Text:CHARACTER:37.2
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = ValidateMCRD(InRootRef, EnvRef, msgType, msgTopic, msgSet, msgFmt, qDest, publish, 2);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ValidateMCRD
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDPUB_V100.ValidateMCRD
Insert
Type:INTEGER:5
Text:CHARACTER:22.5
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp(InRootRef, EnvRef, MsgSet, searchMsgType, MsgFmt, mcrdRef.Validate);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlTreeStatements.cpp
Line:INTEGER:388
Function:CHARACTER:SqlCreateFieldStatement::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2909
Text:CHARACTER:Exception creating element
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCParser.cpp
Line:INTEGER:926
Function:CHARACTER:ImbXMLNSCParser::parseLastChild
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5009
Text:CHARACTER:XML Parsing Errors have occurred
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCDocHandler.cpp
Line:INTEGER:616
Function:CHARACTER:ImbXMLNSCDocHandler::handleParseErrors
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5008 - Invalid element name
Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Text:CHARACTER:1
Insert
Type:INTEGER:2
Text:CHARACTER:2105
Insert
Type:INTE...




------------
ExceptionList
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbDataFlowNode.cpp
Line:INTEGER:1073
Function:CHARACTER:ImbDataFlowNode::createExceptionList
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Node throwing exception
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbComputeNode.cpp
Line:INTEGER:489
Function:CHARACTER:ImbComputeNode::evaluate
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Caught exception and rethrowing
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main
Insert
Type:INTEGER:5
Text:CHARACTER:6.3
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = EVAL(eStr);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SERVICE_PUB_BASIC_MAIN
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN
Insert
Type:INTEGER:5
Text:CHARACTER:37.2
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = ValidateMCRD(InRootRef, EnvRef, msgType, msgTopic, msgSet, msgFmt, qDest, publish, 2);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ValidateMCRD
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDPUB_V100.ValidateMCRD
Insert
Type:INTEGER:5
Text:CHARACTER:22.5
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp(InRootRef, EnvRef, MsgSet, searchMsgType, MsgFmt, mcrdRef.Validate);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlTreeStatements.cpp
Line:INTEGER:388
Function:CHARACTER:SqlCreateFieldStatement::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2909
Text:CHARACTER:Exception creating element
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCParser.cpp
Line:INTEGER:926
Function:CHARACTER:ImbXMLNSCParser::parseLastChild
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5009
Text:CHARACTER:XML Parsing Errors have occurred
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCDocHandler.cpp
Line:INTEGER:616
Function:CHARACTER:ImbXMLNSCDocHandler::handleParseErrors
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5011 - XML Namespace not allowed for an element unless in the XMLNS domain.

Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Text:CHARACTER:1
Insert
Type:INTEGER:2
Text:CHARACTER:2096
Insert
Type:INTE...


--------
ExceptionList
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbDataFlowNode.cpp
Line:INTEGER:1073
Function:CHARACTER:ImbDataFlowNode::createExceptionList
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Node throwing exception
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbComputeNode.cpp
Line:INTEGER:489
Function:CHARACTER:ImbComputeNode::evaluate
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Caught exception and rethrowing
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main
Insert
Type:INTEGER:5
Text:CHARACTER:6.3
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = EVAL(eStr);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SERVICE_PUB_BASIC_MAIN
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN
Insert
Type:INTEGER:5
Text:CHARACTER:37.2
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = ValidateMCRD(InRootRef, EnvRef, msgType, msgTopic, msgSet, msgFmt, qDest, publish, 2);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ValidateMCRD
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDPUB_V100.ValidateMCRD
Insert
Type:INTEGER:5
Text:CHARACTER:22.5
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp(InRootRef, EnvRef, MsgSet, searchMsgType, MsgFmt, mcrdRef.Validate);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlTreeStatements.cpp
Line:INTEGER:388
Function:CHARACTER:SqlCreateFieldStatement::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2909
Text:CHARACTER:Exception creating element
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCParser.cpp
Line:INTEGER:926
Function:CHARACTER:ImbXMLNSCParser::parseLastChild
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5009
Text:CHARACTER:XML Parsing Errors have occurred
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCDocHandler.cpp
Line:INTEGER:616
Function:CHARACTER:ImbXMLNSCDocHandler::handleParseErrors
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5011
Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
Text:CHARACTER:1
Insert
Type:INTEGER:2
Text:CHARACTER:2096
Insert
Type:INTE...


---
sub
ExceptionList
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbDataFlowNode.cpp
Line:INTEGER:1073
Function:CHARACTER:ImbDataFlowNode::createExceptionList
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.TopicGroup01
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Node throwing exception
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbComputeNode.cpp
Line:INTEGER:489
Function:CHARACTER:ImbComputeNode::evaluate
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Caught exception and rethrowing
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:TRANSFORM_SRVC_V100.OMB_XML2XML_TRANSFORM_LINK_COMPUTE_MAIN_V100.Main
Insert
Type:INTEGER:5
Text:CHARACTER:6.3
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = EVAL(eStr);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:XML2XML_TRANSFORM_MAIN
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:TRANSFORM_V100.XML2XML_TRANSFORM_MAIN
Insert
Type:INTEGER:5
Text:CHARACTER:5.2
Insert
Type:INTEGER:5
Text:CHARACTER:IF EvalSubInMsg(InRootRef, OutRootRef, EnvRef, InLERef, OutLERef) = TRUE THEN... END IF;
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:EvalSubInMsg
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHARED_TRANSFORM_V100.EvalSubInMsg
Insert
Type:INTEGER:5
Text:CHARACTER:17.3
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp(InRootRef, EnvRef, cfgRef.InputMsgSet, cfgRef.InputMsgType, cfgRef.InputMsgFmt, cfgRef.Validate);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlTreeStatements.cpp
Line:INTEGER:388
Function:CHARACTER:SqlCreateFieldStatement::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_3
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.FilterTransformRoute
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2909
Text:CHARACTER:Exception creating element
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:20.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, cfgRef.InputMsgEncoding, cfgRef.InputMsgCCSID, MsgSet, MsgType, MsgFmt);
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCParser.cpp
Line:INTEGER:926
Function:CHARACTER:ImbXMLNSCParser::parseLastChild
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5009
Text:CHARACTER:XML Parsing Errors have occurred
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCDocHandler.cpp
Line:INTEGER:616
Function:CHARACTER:ImbXMLNSCDocHandler::handleParseErrors
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:TRANSFORM_SRVC_V100/OMB_TG01_XML2XML_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:TRANSFORM_SRVC_V100.MBS01_ENVELOPE_V100.TopicGroup01
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5025
Text:CHARACTER:A schema validation error has occurred while parsing the XML document
Insert
Type:INTEGER:2
Text:CHARACTER:5032
Insert
Type:INTEGER:2
Text:CHARACTER:2
Insert
Type:INTEGER:2
...




pub cp mqmd:
------------



ExceptionList
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbDataFlowNode.cpp
Line:INTEGER:1073
Function:CHARACTER:ImbDataFlowNode::createExceptionList
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Node throwing exception
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbComputeNode.cpp
Line:INTEGER:489
Function:CHARACTER:ImbComputeNode::evaluate
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2230
Text:CHARACTER:Caught exception and rethrowing
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main
Insert
Type:INTEGER:5
Text:CHARACTER:6.3
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = EVAL(eStr);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:PUBLISH_SERVICE_PUB_BASIC_MAIN
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN
Insert
Type:INTEGER:5
Text:CHARACTER:37.2
Insert
Type:INTEGER:5
Text:CHARACTER:SET rtVal = ValidateMCRD(InRootRef, EnvRef, msgType, msgTopic, msgSet, msgFmt, qDest, publish, 2);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ValidateMCRD
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDPUB_V100.ValidateMCRD
Insert
Type:INTEGER:5
Text:CHARACTER:22.5
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp(InRootRef, EnvRef, MsgSet, searchMsgType, MsgFmt, mcrdRef.Validate);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlRoutine.cpp
Line:INTEGER:628
Function:CHARACTER:SqlRoutine::invoke
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2934
Text:CHARACTER:Error occured in procedure
Insert
Type:INTEGER:5
Text:CHARACTER:ParseInputMsgToTemp
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlStatementGroup.cpp
Line:INTEGER:641
Function:CHARACTER:SqlStatementGroup::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2488
Text:CHARACTER:Error detected, rethrowing
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:23.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, inEncoding, inCCSID, MsgSet, MsgType, MsgFmt);
RecoverableException
File:CHARACTER:F:\build\S700_P\src\DataFlowEngine\ImbRdl\ImbRdlTreeStatements.cpp
Line:INTEGER:388
Function:CHARACTER:SqlCreateFieldStatement::execute
Type:CHARACTER:ComIbmComputeNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_6
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.Publisher
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2909
Text:CHARACTER:Exception creating element
Insert
Type:INTEGER:5
Text:CHARACTER:SHAREDUTIL_V100.ParseInputMsgToTemp
Insert
Type:INTEGER:5
Text:CHARACTER:23.3
Insert
Type:INTEGER:5
Text:CHARACTER:CREATE LASTCHILD OF EnvRef.TempParse DOMAIN cfgRef.InputMsgDomain PARSE(InRootRef.BLOB.BLOB, inEncoding, inCCSID, MsgSet, MsgType, MsgFmt);
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCParser.cpp
Line:INTEGER:928
Function:CHARACTER:ImbXMLNSCParser::parseLastChild
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5009
Text:CHARACTER:XML Parsing Errors have occurred
ParserException
File:CHARACTER:F:\build\S700_P\src\MTI\MTIforBroker\GenXmlParser4\ImbXMLNSCServices.cpp
Line:INTEGER:281
Function:CHARACTER:ImbXMLNSCServices::setBufferInfo
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_1
Label:CHARACTER:PUBLISH_SRVC_V100.PBS03_PUB_BASIC_V100.MQInput
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:5018
Text:CHARACTER:An initialization error occurred while creating a converter for transcoding the input bitstream
RecoverableException
File:CHARACTER:F:\build\S700_P\src\CommonServices\ImbConverter.cpp
Line:INTEGER:114
Function:CHARACTER:ImbConverterCPP::ImbConverterCPP
Type:CHARACTER:
Name:CHARACTER:
Label:CHARACTER:
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2130
Text:CHARACTER...
Back to top
View user's profile Send private message Send e-mail MSN Messenger
mqjeff
PostPosted: Mon Feb 28, 2011 6:11 am    Post subject: Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

Please edit your message to use [ c o d e ] tags to make it readable.
Back to top
View user's profile Send private message
kimbert
PostPosted: Mon Feb 28, 2011 8:18 am    Post subject: Reply with quote

Jedi Council

Joined: 29 Jul 2003
Posts: 5542
Location: Southampton

Quote:
Please edit your message to use [ c o d e ] tags to make it readable.
Even better, please find the actual text of the message. The exception list is not the full text. You can find the error message in various ways:
- Windows Event Viewer
- user trace
- by looking up the BIPnnnn code in the IBM online manuals. Google will find it for you.

You should be taking a user trace anyway - it looks as if your message flow is doing things that you do not understand ( e.g. using the deprecated XML domain ) , and user trace is the best way to find out why.
Back to top
View user's profile Send private message
scravr
PostPosted: Mon Feb 28, 2011 10:08 am    Post subject: Reply with quote

Partisan

Joined: 03 Apr 2003
Posts: 391
Location: NY NY USA 10021

When running command line to capture trace I get this error:

C:\Program Files\IBM\MQSI\7.0>mqsichangetrace MoshePc20100622 -u -e PUB_PBS -r
BIP8071I: Successful command completion.

C:\Program Files\IBM\MQSI\7.0>mqsichangetrace MoshePc20100622 -u -e PUB_PBS -l debug
BIP8071I: Successful command completion.

C:\Program Files\IBM\MQSI\7.0>mqsireadlog MoshePc20100622 -u -e PUB_PBS -o PUB_PBS_ENV.xml
BIP8071I: Successful command completion.

C:\Program Files\IBM\MQSI\7.0>mqsiformatlog -i PUB_PBS_ENV.xml -o PUB_PBS_ENV.txt
BIP8069E: Unable to find message 7000 in message catalog BIPmsgs.properties.
A message could not be found in the message catalog specified.
Ensure that the message is available in the message catalog and that the catalog is in the product message directory.

BIP8071I: Successful command completion.
Back to top
View user's profile Send private message Send e-mail MSN Messenger
scravr
PostPosted: Mon Feb 28, 2011 10:28 am    Post subject: Reply with quote

Partisan

Joined: 03 Apr 2003
Posts: 391
Location: NY NY USA 10021

There is a trace file even with the commandline strange error:

To recap:
MQ Input Node receives msgs on BLOB domain, Parse "On Demand" (nothing else is checked), Convert is NOT checked, Validate None.

Message set has both MQM and XMLNSC.

It looks like XMLS was the parser type (see lines 12 & 30 on trace)




Timestamps are formatted in local time, 300 minutes before GMT.
Trace written by version ; formatter version 7001 (build S700-FP01)

2011-02-28 13:00:21.468002 2084 UserTrace BIP4040I: The Execution Group ''PUB_PBS'' has processed a configuration message successfully.
A configuration message has been processed successfully. Any configuration changes have been made and stored persistently.
No user action required.
2011-02-28 13:00:21.472688 2084 UserTrace BIP2638I: The MQ output node '.outputNode' attempted to write a message to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' connected to queue manager ''MoshePc20100622''. The MQCC was '0' and the MQRC was '0'.
2011-02-28 13:00:21.472709 2084 UserTrace BIP2622I: Message successfully output by output node '.outputNode' to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' on queue manager ''MoshePc20100622''.
2011-02-28 13:00:32.005123 2084 UserTrace BIP2632I: Message received and propagated to 'out' terminal of MQ input node '.InputNode'.
2011-02-28 13:00:32.005123 2084 UserTrace BIP6060I: Parser type ''Properties'' created on behalf of node '.InputNode' to handle portion of incoming message of length 0 bytes beginning at offset '0'.
2011-02-28 13:00:32.005123 2084 UserTrace BIP6061I: Parser type ''MQMD'' created on behalf of node '.InputNode' to handle portion of incoming message of length '364' bytes beginning at offset '0'. Parser type selected based on value ''MQHMD'' from previous parser.
2011-02-28 13:00:32.005123 2084 UserTrace BIP6061I: Parser type ''XMLS'' created on behalf of node '.InputNode' to handle portion of incoming message of length '219' bytes beginning at offset '364'. Parser type selected based on value ''XMLS'' from previous parser.
2011-02-28 13:00:32.005123 2084 Information BIP2152I: Configuration message received from broker.
An execution group received a command from the Broker.
No user action required.
2011-02-28 13:00:32.005123 2084 Information BIP2153I: About to ''change'' an execution group.
An execution group is about to perform an action.
No user action required.
2011-02-28 13:00:32.045265 2084 UserTrace BIP4040I: The Execution Group ''PUB_PBS'' has processed a configuration message successfully.
A configuration message has been processed successfully. Any configuration changes have been made and stored persistently.
No user action required.
2011-02-28 13:00:32.045543 2084 UserTrace BIP2638I: The MQ output node '.outputNode' attempted to write a message to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' connected to queue manager ''MoshePc20100622''. The MQCC was '0' and the MQRC was '0'.
2011-02-28 13:00:32.045597 2084 UserTrace BIP2622I: Message successfully output by output node '.outputNode' to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' on queue manager ''MoshePc20100622''.
2011-02-28 13:00:32.045783 2084 Information BIP2154I: Execution group finished with Configuration message.
A command response will be sent to the broker.
No user action required.
2011-02-28 13:00:50.405166 2084 UserTrace BIP2632I: Message received and propagated to 'out' terminal of MQ input node '.InputNode'.
2011-02-28 13:00:50.405284 2084 UserTrace BIP6060I: Parser type ''Properties'' created on behalf of node '.InputNode' to handle portion of incoming message of length 0 bytes beginning at offset '0'.
2011-02-28 13:00:50.405307 2084 UserTrace BIP6061I: Parser type ''MQMD'' created on behalf of node '.InputNode' to handle portion of incoming message of length '364' bytes beginning at offset '0'. Parser type selected based on value ''MQHMD'' from previous parser.
2011-02-28 13:00:50.405357 2084 UserTrace BIP6061I: Parser type ''XMLS'' created on behalf of node '.InputNode' to handle portion of incoming message of length '308' bytes beginning at offset '364'. Parser type selected based on value ''XMLS'' from previous parser.
2011-02-28 13:00:50.454772 2084 Information BIP2155I: About to ''start ' ' the Message flow - ''PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100''.
An execution group is about to perform an action.
No user action required.
2011-02-28 13:00:50.471569 2084 UserTrace BIP2269I: Message flow ''PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100'' (uuid=''d3092959-2e01-0000-0080-ca8d2957508b'') started successfully.
The message broker received an operational control message containing an instruction to start the message flow ''PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100'' (uuid=''d3092959-2e01-0000-0080-ca8d2957508b'') and successfully performed this action.
No user action required.
2011-02-28 13:00:50.505138 7776 UserTrace BIP2632I: Message received and propagated to 'out' terminal of MQ input node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.MQInput'.
2011-02-28 13:00:50.505443 7776 UserTrace BIP3904I: Invoking the evaluate() method of node (class='CSConfigSrvLoaderNode', name='PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_3').
About to pass a message to the evaluate() method of the specified node.
No user action required.
2011-02-28 13:00:50.505496 7776 UserTrace BIP4144I: Entered function 'cniCreateElementAsLastChild'(a2ae944, 97ed080, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.505508 7776 UserTrace BIP4145I: Exiting function 'cniCreateElementAsLastChild' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.505519 7776 UserTrace BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'.
Element ''Type'' has been changed to '16777216'.
No user action required.
2011-02-28 13:00:50.509334 7776 UserTrace BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''Configuration''.
Element ''Name'' has been changed to ''Configuration''.
No user action required.
2011-02-28 13:00:50.611595 2084 UserTrace BIP4040I: The Execution Group ''PUB_PBS'' has processed a configuration message successfully.
A configuration message has been processed successfully. Any configuration changes have been made and stored persistently.
No user action required.
2011-02-28 13:00:50.611846 2084 UserTrace BIP2638I: The MQ output node '.outputNode' attempted to write a message to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' connected to queue manager ''MoshePc20100622''. The MQCC was '0' and the MQRC was '0'.
2011-02-28 13:00:50.611858 2084 UserTrace BIP2622I: Message successfully output by output node '.outputNode' to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' on queue manager ''MoshePc20100622''.
2011-02-28 13:00:50.632701 7776 UserTrace BIP4144I: Entered function 'cniCopyElementTree'(a2ae944, 9815780, 97ed0e0, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.632755 7776 UserTrace BIP4145I: Exiting function 'cniCopyElementTree' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.632766 7776 UserTrace BIP4144I: Entered function 'cniDetach'(a2ae944, 9815718, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.632774 7776 UserTrace BIP4145I: Exiting function 'cniDetach' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.632976 7776 UserTrace BIP3904I: Invoking the evaluate() method of node (class='ComIbmSequenceNode', name='PUBLISH_SRVC_V100/OMB_PUBLISH_SERVICE_MF_V100#FCMComposite_1_9').
About to pass a message to the evaluate() method of the specified node.
No user action required.
2011-02-28 13:00:50.633071 7776 UserTrace BIP6060I: Parser type ''Properties'' created on behalf of node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.MQInput' to handle portion of incoming message of length 0 bytes beginning at offset '0'.
2011-02-28 13:00:50.633094 7776 UserTrace BIP6061I: Parser type ''MQMD'' created on behalf of node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.MQInput' to handle portion of incoming message of length '364' bytes beginning at offset '0'. Parser type selected based on value ''MQHMD'' from previous parser.
2011-02-28 13:00:50.633129 7776 UserTrace BIP6061I: Parser type ''MQRFH2'' created on behalf of node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.MQInput' to handle portion of incoming message of length '404' bytes beginning at offset '364'. Parser type selected based on value ''MQHRF2'' from previous parser.
2011-02-28 13:00:50.633167 7776 UserTrace BIP6069W: The broker is not capable of handling a message of data type ''JMS_TEXT''.
The message broker received a message that requires the handling of data of type ''JMS_TEXT'', but the broker does not have the capability to handle data of this type.
Check both the message being sent to the message broker and the configuration data for the node. References to the unsupported data type must be removed if the message is to be processed by the broker.
2011-02-28 13:00:50.633197 7776 UserTrace BIP6061I: Parser type ''BLOB'' created on behalf of node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.MQInput' to handle portion of incoming message of length '2450' bytes beginning at offset '768'. Parser type selected based on value ''NONE'' from previous parser.
2011-02-28 13:00:50.634407 7776 UserTrace BIP4144I: Entered function 'cniCreateElementAsLastChild'(a2adda0, b27baa8, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.634418 7776 UserTrace BIP4145I: Exiting function 'cniCreateElementAsLastChild' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.634487 7776 UserTrace BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'.
Element ''Type'' has been changed to '16777216'.
No user action required.
2011-02-28 13:00:50.634498 7776 UserTrace BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''Sequence''.
Element ''Name'' has been changed to ''Sequence''.
No user action required.
2011-02-28 13:00:50.634510 7776 UserTrace BIP4144I: Entered function 'cniCreateElementAsLastChild'(a2adda0, b27bb08, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.634517 7776 UserTrace BIP4145I: Exiting function 'cniCreateElementAsLastChild' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.634529 7776 UserTrace BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'.
Element ''Type'' has been changed to '50331648'.
No user action required.
2011-02-28 13:00:50.634536 7776 UserTrace BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''Number''.
Element ''Name'' has been changed to ''Number''.
No user action required.
2011-02-28 13:00:50.634548 7776 UserTrace BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '5'.
Element ''IntegerValue'' has been changed to '5'.
No user action required.
2011-02-28 13:00:50.634567 7776 UserTrace BIP4144I: Entered function 'cniCreateElementAsLastChild'(a2adda0, b27bb08, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.634574 7776 UserTrace BIP4145I: Exiting function 'cniCreateElementAsLastChild' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.634582 7776 UserTrace BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'.
Element ''Type'' has been changed to '50331648'.
No user action required.
2011-02-28 13:00:50.634593 7776 UserTrace BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''Start''.
Element ''Name'' has been changed to ''Start''.
No user action required.
2011-02-28 13:00:50.634605 7776 UserTrace BIP4142I: Evaluating cniElementSet'BooleanValue'. Changing value from ''NULL'' to ''false''.
Element ''BooleanValue'' has been changed to ''false''.
No user action required.
2011-02-28 13:00:50.634616 7776 UserTrace BIP4144I: Entered function 'cniCreateElementAsLastChild'(a2adda0, b27bb08, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A').
Entered the specified function with the specified parameters.
No user action required.
2011-02-28 13:00:50.634628 7776 UserTrace BIP4145I: Exiting function 'cniCreateElementAsLastChild' with result: 'CCI_SUCCESS'(0).
About to exit the specified the function with the specified result.
No user action required.
2011-02-28 13:00:50.634635 7776 UserTrace BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'.
Element ''Type'' has been changed to '50331648'.
No user action required.
2011-02-28 13:00:50.634647 7776 UserTrace BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''End''.
Element ''Name'' has been changed to ''End''.
No user action required.
2011-02-28 13:00:50.634654 7776 UserTrace BIP4142I: Evaluating cniElementSet'BooleanValue'. Changing value from ''NULL'' to ''false''.
Element ''BooleanValue'' has been changed to ''false''.
No user action required.
2011-02-28 13:00:50.634700 7776 UserTrace BIP4837E: The Sequence node ''Sequence'' finished processing the message and assigned sequence number ''5'' to it. The message belongs to sequence group ''PBS01_PUB_BASIC_V100''.
None
No user action required.
2011-02-28 13:00:54.233085 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE PubLibVerKeyWord CONSTANT CHARACTER '$MQSI PUBLIBVERSION=1.0.0 MQSI$';'' at ('PUBLISH_SRVC_V100.PubLibVerKeyWord', '1.1').
2011-02-28 13:00:54.233165 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE PubSrvcVerKeyWord CONSTANT CHARACTER '$MQSI PUBSERVICEVERSION=1.0.0 MQSI$';'' at ('PUB_V100.PubSrvcVerKeyWord', '1.1').
2011-02-28 13:00:54.233188 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_VALID CONSTANT INTEGER 1;'' at ('PUB_V100.MCRD_VALID', '1.1').
2011-02-28 13:00:54.233207 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_MSGTYPE_INVALID CONSTANT INTEGER -1;'' at ('PUB_V100.MCRD_MSGTYPE_INVALID', '1.1').
2011-02-28 13:00:54.233249 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''-1'' at ('PUB_V100.MCRD_MSGTYPE_INVALID', '1.45'). This resolved to ''-1''. The result was ''-1''.
2011-02-28 13:00:54.233268 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_MSGTOPIC_INVALID CONSTANT INTEGER -2;'' at ('PUB_V100.MCRD_MSGTOPIC_INVALID', '1.1').
2011-02-28 13:00:54.233283 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''-2'' at ('PUB_V100.MCRD_MSGTOPIC_INVALID', '1.45'). This resolved to ''-2''. The result was ''-2''.
2011-02-28 13:00:54.233303 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE SharedPubValidVerKeyWord CONSTANT CHARACTER '$MQSI SHAREDPUBVALIDVERSION=1.0.0 MQSI$';'' at ('SHAREDPUB_V100.SharedPubValidVerKeyWord', '1.1').
2011-02-28 13:00:54.233322 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_VALID CONSTANT INTEGER 1;'' at ('SHAREDPUB_V100.MCRD_VALID', '1.1').
2011-02-28 13:00:54.233341 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_MSGTYPE_INVALID CONSTANT INTEGER -1;'' at ('SHAREDPUB_V100.MCRD_MSGTYPE_INVALID', '1.1').
2011-02-28 13:00:54.233360 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''-1'' at ('SHAREDPUB_V100.MCRD_MSGTYPE_INVALID', '1.45'). This resolved to ''-1''. The result was ''-1''.
2011-02-28 13:00:54.233379 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE MCRD_MSGTOPIC_INVALID CONSTANT INTEGER -2;'' at ('SHAREDPUB_V100.MCRD_MSGTOPIC_INVALID', '1.1').
2011-02-28 13:00:54.233394 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''-2'' at ('SHAREDPUB_V100.MCRD_MSGTOPIC_INVALID', '1.45'). This resolved to ''-2''. The result was ''-2''.
2011-02-28 13:00:54.233417 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE SharedPubBuildVerKeyWord CONSTANT CHARACTER '$MQSI SHAREDPUBBUILDVERSION=1.0.0 MQSI$';'' at ('SHAREDPUB_V100.SharedPubBuildVerKeyWord', '1.1').
2011-02-28 13:00:54.233436 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE SharedUtilParseVerKeyWord CONSTANT CHARACTER '$MQSI SHAREDUTILPARSEVERSION=1.0.0 MQSI$';'' at ('SHAREDUTIL_V100.SharedUtilParseVerKeyWord', '1.1').
2011-02-28 13:00:54.233455 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE SharedUtilMsgCntxVerKeyWord CONSTANT CHARACTER '$MQSI SHAREDUTILMSGCNTXERSION=1.0.0 MQSI$';'' at ('SHAREDUTIL_V100.SharedUtilMsgCntxVerKeyWord', '1.1').
2011-02-28 13:00:54.233547 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE ENVDCL_STR CONSTANT CHARACTER '<Envelope';'' at ('SHAREDUTIL_V100.ENVDCL_STR', '1.1').
2011-02-28 13:00:54.233562 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE ENVDCL_EBCDIC_HEX CONSTANT BLOB CAST(ENVDCL_STR AS BLOB CCSID 37);'' at ('SHAREDUTIL_V100.ENVDCL_EBCDIC_HEX', '1.1').
2011-02-28 13:00:54.233585 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''ENVDCL_STR'' at ('SHAREDUTIL_V100.ENVDCL_EBCDIC_HEX', '1.48'). This resolved to ''ENVDCL_STR''. The result was '''<Envelope'''.
2011-02-28 13:00:54.233631 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(ENVDCL_STR AS BLOB CCSID 37)'' at ('SHAREDUTIL_V100.ENVDCL_EBCDIC_HEX', '1.43'). This resolved to ''CAST('<Envelope' AS BLOB CCSID 37 )''. The result was ''X'4cc595a58593969785'''.
2011-02-28 13:00:54.233650 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE ENVDCL_ASCII_HEX CONSTANT BLOB CAST(ENVDCL_STR AS BLOB CCSID 1208);'' at ('SHAREDUTIL_V100.ENVDCL_ASCII_HEX', '1.1').
2011-02-28 13:00:54.233665 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''ENVDCL_STR'' at ('SHAREDUTIL_V100.ENVDCL_ASCII_HEX', '1.48'). This resolved to ''ENVDCL_STR''. The result was '''<Envelope'''.
2011-02-28 13:00:54.233688 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(ENVDCL_STR AS BLOB CCSID 1208)'' at ('SHAREDUTIL_V100.ENVDCL_ASCII_HEX', '1.43'). This resolved to ''CAST('<Envelope' AS BLOB CCSID 1208 )''. The result was ''X'3c456e76656c6f7065'''.
2011-02-28 13:00:54.233703 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE XMLDCL_STR CONSTANT CHARACTER '<?xml';'' at ('SHAREDUTIL_V100.XMLDCL_STR', '1.1').
2011-02-28 13:00:54.233722 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE XMLDCL_EBCDIC_HEX CONSTANT BLOB CAST(XMLDCL_STR AS BLOB CCSID 37);'' at ('SHAREDUTIL_V100.XMLDCL_EBCDIC_HEX', '1.1').
2011-02-28 13:00:54.233734 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''XMLDCL_STR'' at ('SHAREDUTIL_V100.XMLDCL_EBCDIC_HEX', '1.48'). This resolved to ''XMLDCL_STR''. The result was '''<?xml'''.
2011-02-28 13:00:54.233749 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(XMLDCL_STR AS BLOB CCSID 37)'' at ('SHAREDUTIL_V100.XMLDCL_EBCDIC_HEX', '1.43'). This resolved to ''CAST('<?xml' AS BLOB CCSID 37 )''. The result was ''X'4c6fa79493'''.
2011-02-28 13:00:54.233768 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE XMLDCL_ASCII_HEX CONSTANT BLOB CAST(XMLDCL_STR AS BLOB CCSID 1208);'' at ('SHAREDUTIL_V100.XMLDCL_ASCII_HEX', '1.1').
2011-02-28 13:00:54.233783 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''XMLDCL_STR'' at ('SHAREDUTIL_V100.XMLDCL_ASCII_HEX', '1.48'). This resolved to ''XMLDCL_STR''. The result was '''<?xml'''.
2011-02-28 13:00:54.233802 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(XMLDCL_STR AS BLOB CCSID 1208)'' at ('SHAREDUTIL_V100.XMLDCL_ASCII_HEX', '1.43'). This resolved to ''CAST('<?xml' AS BLOB CCSID 1208 )''. The result was ''X'3c3f786d6c'''.
2011-02-28 13:00:54.233818 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCEYE_STR CONSTANT CHARACTER 'FBOC';'' at ('SHAREDUTIL_V100.FBOCEYE_STR', '1.1').
2011-02-28 13:00:54.233833 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCEYE_EBCDIC_HEX CONSTANT BLOB CAST(FBOCEYE_STR AS BLOB CCSID 37);'' at ('SHAREDUTIL_V100.FBOCEYE_EBCDIC_HEX', '1.1').
2011-02-28 13:00:54.233848 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''FBOCEYE_STR'' at ('SHAREDUTIL_V100.FBOCEYE_EBCDIC_HEX', '1.48'). This resolved to ''FBOCEYE_STR''. The result was '''FBOC'''.
2011-02-28 13:00:54.233867 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(FBOCEYE_STR AS BLOB CCSID 37)'' at ('SHAREDUTIL_V100.FBOCEYE_EBCDIC_HEX', '1.43'). This resolved to ''CAST('FBOC' AS BLOB CCSID 37 )''. The result was ''X'c6c2d6c3'''.
2011-02-28 13:00:54.233882 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCEYE_ASCII_HEX CONSTANT BLOB CAST(FBOCEYE_STR AS BLOB CCSID 1208);'' at ('SHAREDUTIL_V100.FBOCEYE_ASCII_HEX', '1.1').
2011-02-28 13:00:54.233898 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''FBOCEYE_STR'' at ('SHAREDUTIL_V100.FBOCEYE_ASCII_HEX', '1.48'). This resolved to ''FBOCEYE_STR''. The result was '''FBOC'''.
2011-02-28 13:00:54.233913 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''CAST(FBOCEYE_STR AS BLOB CCSID 1208)'' at ('SHAREDUTIL_V100.FBOCEYE_ASCII_HEX', '1.43'). This resolved to ''CAST('FBOC' AS BLOB CCSID 1208 )''. The result was ''X'46424f43'''.
2011-02-28 13:00:54.233928 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCHDR_TOPIC_OFFSSET CONSTANT INTEGER 99;'' at ('SHAREDUTIL_V100.FBOCHDR_TOPIC_OFFSSET', '1.1').
2011-02-28 13:00:54.233947 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCHDR_TOPIC_LEN CONSTANT INTEGER 64;'' at ('SHAREDUTIL_V100.FBOCHDR_TOPIC_LEN', '1.1').
2011-02-28 13:00:54.233966 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCHDR_MSGTYPE_OFFSET CONSTANT INTEGER 163;'' at ('SHAREDUTIL_V100.FBOCHDR_MSGTYPE_OFFSET', '1.1').
2011-02-28 13:00:54.233982 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE FBOCHDR_MSGTYPE_LEN CONSTANT INTEGER 24;'' at ('SHAREDUTIL_V100.FBOCHDR_MSGTYPE_LEN', '1.1').
2011-02-28 13:00:54.234024 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''BEGIN ... END;'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '2.2').
2011-02-28 13:00:54.234039 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE eStr CHARACTER Environment.Configuration.PublisherFunction || '(InputRoot,OutputRoot,Environment,InputLocalEnvironment,OutputLocalEnvironment)';'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '3.3').
2011-02-28 13:00:54.234073 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''Environment.Configuration.PublisherFunction'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '3.21'). This resolved to ''Environment.Configuration.PublisherFunction''. The result was '''PUBLISH_SERVICE_PUB_BASIC_MAIN'''.
2011-02-28 13:00:54.234096 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''Environment.Configuration.PublisherFunction || '(InputRoot,OutputRoot,Environment,InputLocalEnvironment,OutputLocalEnvironment)''' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '3.65'). This resolved to '''PUBLISH_SERVICE_PUB_BASIC_MAIN' || '(InputRoot,OutputRoot,Environment,InputLocalEnvironment,OutputLocalEnvironment)'''. The result was '''PUBLISH_SERVICE_PUB_BASIC_MAIN(InputRoot,OutputRoot,Environment,InputLocalEnvironment,OutputLocalEnvironment)'''.
2011-02-28 13:00:54.234115 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE rtVal BOOLEAN FALSE;'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '5.3').
2011-02-28 13:00:54.234142 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''SET rtVal = EVAL(eStr);'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '6.3').
2011-02-28 13:00:54.234165 7776 UserTrace BIP2538I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''EVAL(eStr)'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '6.15').
2011-02-28 13:00:54.234180 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''eStr'' at ('PUBLISH_SRVC_V100.OMB_PUBLISHER_LINK_COMPUTE_MAIN_V100.Main', '6.20'). This resolved to ''eStr''. The result was '''PUBLISH_SERVICE_PUB_BASIC_MAIN(InputRoot,OutputRoot,Environment,InputLocalEnvironment,OutputLocalEnvironment)'''.
2011-02-28 13:00:54.234306 7776 UserTrace BIP2538I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''PUBLISH_SERVICE_PUB_BASIC_MAIN(InputRoot, OutputRoot, Environment, InputLocalEnvironment, OutputLocalEnvironment)'' at ('', '1.1').
2011-02-28 13:00:54.234344 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''BEGIN ... END;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '3.1').
2011-02-28 13:00:54.234359 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgCCSID INTEGER 0;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '4.2').
2011-02-28 13:00:54.234386 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgEncoding INTEGER 0;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '5.2').
2011-02-28 13:00:54.234413 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE rtVal INTEGER 0;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '6.2').
2011-02-28 13:00:54.234439 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE rtValBool BOOLEAN FALSE;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '7.2').
2011-02-28 13:00:54.234466 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE xmlflag BOOLEAN FALSE;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '8.2').
2011-02-28 13:00:54.234497 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE fixedLenFlag BOOLEAN FALSE;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '9.2').
2011-02-28 13:00:54.234523 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE publish BOOLEAN FALSE;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '10.2').
2011-02-28 13:00:54.234546 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgSet CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '11.2').
2011-02-28 13:00:54.234573 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgType CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '12.2').
2011-02-28 13:00:54.234600 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgFmt CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '13.2').
2011-02-28 13:00:54.234672 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE msgTopic CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '14.2').
2011-02-28 13:00:54.234699 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE ThrowTxt CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '15.2').
2011-02-28 13:00:54.234722 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE qDest CHARACTER '';'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '16.2').
2011-02-28 13:00:54.234748 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE cfgPropRef REFERENCE TO EnvRef.Configuration;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '17.2').
2011-02-28 13:00:54.234779 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''IF GetInputMsgContextPub(InRootRef, EnvRef, msgCCSID, msgEncoding, msgType, msgTopic, xmlflag, fixedLenFlag) = FALSE THEN... END IF;'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.2').
2011-02-28 13:00:54.234802 7776 UserTrace BIP2538I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''GetInputMsgContextPub(InRootRef, EnvRef, msgCCSID, msgEncoding, msgType, msgTopic, xmlflag, fixedLenFlag)'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.6').
2011-02-28 13:00:54.234844 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''msgCCSID'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.45'). This resolved to ''msgCCSID''. The result was ''0''.
2011-02-28 13:00:54.234859 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''msgEncoding'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.54'). This resolved to ''msgEncoding''. The result was ''0''.
2011-02-28 13:00:54.234870 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''msgType'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.66'). This resolved to ''msgType''. The result was ''''''.
2011-02-28 13:00:54.234886 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''msgTopic'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.74'). This resolved to ''msgTopic''. The result was ''''''.
2011-02-28 13:00:54.234897 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''xmlflag'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.83'). This resolved to ''xmlflag''. The result was ''FALSE''.
2011-02-28 13:00:54.234909 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''fixedLenFlag'' at ('PUB_V100.PUBLISH_SERVICE_PUB_BASIC_MAIN', '20.91'). This resolved to ''fixedLenFlag''. The result was ''FALSE''.
2011-02-28 13:00:54.234924 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''BEGIN ... END;'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '5.1').
2011-02-28 13:00:54.234943 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE envDclHex BLOB;'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '6.2').
2011-02-28 13:00:54.234970 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE xmlDclHex BLOB;'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '7.2').
2011-02-28 13:00:54.234992 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE eyecatcherHex BLOB;'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '8.2').
2011-02-28 13:00:54.235019 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''DECLARE dmn CHARACTER FIELDNAME(InRootRef.*:*[4]);'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '9.2').
2011-02-28 13:00:54.235046 7776 UserTrace BIP2540I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Finished evaluating expression ''FIELDNAME(InRootRef.*:*[4])'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '9.19'). The result was '''BLOB'''.
2011-02-28 13:00:54.235065 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''SET envDclHex = SUBSTRING(InRootRef.*:*[4].*:*[2] FROM 1 FOR 9);'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '11.2').
2011-02-28 13:00:54.235294 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''InRootRef.*:*[4].*:*[2]'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '11.28'). This resolved to ''InRootRef.*:*[4].*:*[2]''. The result was ''X'3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e3c636173685f7061796d656e743e3c4752445f5359535f433e313c2f4752445f5359535f433e3c5055425f5359535f433e203c2f5055425f5359535f433e3c4752445f435553545f414343545f49443e3435363c2f4752445f435553545f414343545f49443e3c5055425f435553545f414343545f49443e203c2f5055425f435553545f414343545f49443e3c5041594d545f5345545f4c4f434e5f433e203c2f5041594d545f5345545f4c4f434e5f433e3c4752445f54524e5f5345545f4355525f433e203c2f4752445f54524e5f5345545f4355525f433e3c5055425f54524e5f5345545f4355525f433e203c2f5055425f54524e5f5345545f4355525f433e3c5041594d545f444c56595f494e5354525f433e203c2f5041594d545f444c56595f494e5354525f433e3c4d303131305f414c49474e5f3030313e203c2f4d303131305f414c49474e5f3030313e3c4752445f4c474c5f454e54595f49443e303c2f4752445f4c474c5f454e54595f49443e3c5055425f4c474c5f454e54595f49443e203c2f5055425f4c474c5f454e54595f49443e3c4752445f424f4f4b5f49443e303c2f4752445f424f4f4b5f49443e3c5055425f424f4f4b5f49443e203c2f5055425f424f4f4b5f49443e3c5041594d545f4445414c5f5459505f433e203c2f5041594d545f4445414c5f5459505f433e3c5041594d545f5345544c4d545f414d545f4d3e203c2f5041594d545f5345544c4d545f414d545f4d3e3c5041594d545f5041595f5243565f493e203c2f5041594d545f5041595f5243565f493e3c5345545f4d564d545f444154455f445a3e203c2f5345545f4d564d545f444154455f445a3e3c5041594d545f5245515f543e203c2f5041594d545f5245515f543e3c5041594d545f474c5f4d4e454d5f49443e203c2f5041594d545f474c5f4d4e454d5f49443e3c5041594d545f5245515f5459505f433e203c2f5041594d545f5245515f5459505f433e3c5041594d545f43414e435f434f525f433e203c2f5041594d545f43414e435f434f525f433e3c4d303131305f414c49474e5f3030323e203c2f4d303131305f414c49474e5f3030323e3c4752445f444550545f49443e303c2f4752445f444550545f49443e3c5055425f444550545f49443e203c2f5055425f444550545f49443e3c4752445f4e4f53545f49443e303c2f4752445f4e4f53545f49443e3c5055425f4e4f53545f49443e203c2f5055425f4e4f53545f49443e3c4c494e4b5f494e54524c5f49443e203c2f4c494e4b5f494e54524c5f49443e3c4d303131305f414c49474e5f3030333e203c2f4d303131305f414c49474e5f3030333e3c4752445f424e4b5f414343545f575f49443e303c2f4752445f424e4b5f414343545f575f49443e3c5055425f424e4b5f414343545f575f49443e203c2f5055425f424e4b5f414343545f575f49443e3c424e4b5f414343545f575f464d545f433e203c2f424e4b5f414343545f575f464d545f433e3c424e4b5f414343545f575f41435f49443e203c2f424e4b5f414343545f575f41435f49443e3c424e4b5f414343545f575f4c4e45315f543e203c2f424e4b5f414343545f575f4c4e45315f543e3c424e4b5f414343545f575f4c4e45325f543e203c2f424e4b5f414343545f575f4c4e45325f543e3c424e4b5f414343545f575f4c4e45335f543e203c2f424e4b5f414343545f575f4c4e45335f543e3c424e4b5f414343545f575f4c4e45345f543e203c2f424e4b5f414343545f575f4c4e45345f543e3c4752445f424e4b5f494e544d595f49443e303c2f4752445f424e4b5f494e544d595f49443e3c5055425f424e4b5f494e544d595f49443e3334353c2f5055425f424e4b5f494e544d595f49443e3c424e4b5f494e544d595f464d545f433e203c2f424e4b5f494e544d595f464d545f433e3c424e4b5f494e544d595f41435f49443e203c2f424e4b5f494e544d595f41435f49443e3c424e4b5f494e544d595f4c4e45315f543e203c2f424e4b5f494e544d595f4c4e45315f543e3c424e4b5f494e544d595f4c4e45325f543e203c2f424e4b5f494e544d595f4c4e45325f543e3c424e4b5f494e544d595f4c4e45335f543e203c2f424e4b5f494e544d595f4c4e45335f543e3c424e4b5f494e544d595f4c4e45345f543e203c2f424e4b5f494e544d595f4c4e45345f543e3c4752445f424e4b5f424e465f49443e3132333c2f4752445f424e4b5f424e465f49443e3c5055425f424e4b5f424e465f49443e203c2f5055425f424e4b5f424e465f49443e3c424e4b5f424e465f464d545f433e203c2f424e4b5f424e465f464d545f433e3c424e4b5f424e465f41435f49443e203c2f424e4b5f424e465f41435f49443e3c424e4b5f424e465f4c4e45315f543e203c2f424e4b5f424e465f4c4e45315f543e3c424e4b5f424e465f4c4e45325f543e203c2f424e4b5f424e465f4c4e45325f543e3c424e4b5f424e465f4c4e45335f543e203c2f424e4b5f424e465f4c4e45335f543e3c424e4b5f424e465f4c4e45345f543e203c2f424e4b5f424e465f4c4e45345f543e3c5041594d545f494e5354525f4c4e45315f543e203c2f5041594d545f494e5354525f4c4e45315f543e3c5041594d545f494e5354525f4c4e45325f543e783c2f5041594d545f494e5354525f4c4e45325f543e3c5041594d545f494e5354525f4c4e45335f543e793c2f5041594d545f494e5354525f4c4e45335f543e3c5041594d545f494e5354525f4c4e45345f543e7a3c2f5041594d545f494e5354525f4c4e45345f543e3c4d4f5348455f544553545f5049433939393e303c2f4d4f5348455f544553545f5049433939393e3c4d4f5348455f544553545f434f4d50315f5245414c5f46503e303c2f4d4f5348455f544553545f434f4d50315f5245414c5f46503e3c4d4f5348455f544553545f434f4d50325f44424c5f46503e303c2f4d4f5348455f544553545f434f4d50325f44424c5f46503e3c4d4f5348455f544553545f434f4d50335f50443e303c2f4d4f5348455f544553545f434f4d50335f50443e3c4d4f5348455f544553545f434f4d50343e303c2f4d4f5348455f544553545f434f4d50343e3c4d4f5348455f544553545f434f4d50355f494e543e303c2f4d4f5348455f544553545f434f4d50355f494e543e3c4d4f5348455f544553545f434f4d503e303c2f4d4f5348455f544553545f434f4d503e3c4d4f5348455f544553545f42494e4152593e303c2f4d4f5348455f544553545f42494e4152593e3c2f636173685f7061796d656e743e'''.
2011-02-28 13:00:54.235511 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''SUBSTRING(InRootRef.*:*[4].*:*[2] FROM 1 FOR 9)'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '11.18'). This resolved to ''SUBSTRING(X'3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e3c636173685f7061796d656e743e3c4752445f5359535f433e313c2f4752445f5359535f433e3c5055425f5359535f433e203c2f5055425f5359535f433e3c4752445f435553545f414343545f49443e3435363c2f4752445f435553545f414343545f49443e3c5055425f435553545f414343545f49443e203c2f5055425f435553545f414343545f49443e3c5041594d545f5345545f4c4f434e5f433e203c2f5041594d545f5345545f4c4f434e5f433e3c4752445f54524e5f5345545f4355525f433e203c2f4752445f54524e5f5345545f4355525f433e3c5055425f54524e5f5345545f4355525f433e203c2f5055425f54524e5f5345545f4355525f433e3c5041594d545f444c56595f494e5354525f433e203c2f5041594d545f444c56595f494e5354525f433e3c4d303131305f414c49474e5f3030313e203c2f4d303131305f414c49474e5f3030313e3c4752445f4c474c5f454e54595f49443e303c2f4752445f4c474c5f454e54595f49443e3c5055425f4c474c5f454e54595f49443e203c2f5055425f4c474c5f454e54595f49443e3c4752445f424f4f4b5f49443e303c2f4752445f424f4f4b5f49443e3c5055425f424f4f4b5f49443e203c2f5055425f424f4f4b5f49443e3c5041594d545f4445414c5f5459505f433e203c2f5041594d545f4445414c5f5459505f433e3c5041594d545f5345544c4d545f414d545f4d3e203c2f5041594d545f5345544c4d545f414d545f4d3e3c5041594d545f5041595f5243565f493e203c2f5041594d545f5041595f5243565f493e3c5345545f4d564d545f444154455f445a3e203c2f5345545f4d564d545f444154455f445a3e3c5041594d545f5245515f543e203c2f5041594d545f5245515f543e3c5041594d545f474c5f4d4e454d5f49443e203c2f5041594d545f474c5f4d4e454d5f49443e3c5041594d545f5245515f5459505f433e203c2f5041594d545f5245515f5459505f433e3c5041594d545f43414e435f434f525f433e203c2f5041594d545f43414e435f434f525f433e3c4d303131305f414c49474e5f3030323e203c2f4d303131305f414c49474e5f3030323e3c4752445f444550545f49443e303c2f4752445f444550545f49443e3c5055425f444550545f49443e203c2f5055425f444550545f49443e3c4752445f4e4f53545f49443e303c2f4752445f4e4f53545f49443e3c5055425f4e4f53545f49443e203c2f5055425f4e4f53545f49443e3c4c494e4b5f494e54524c5f49443e203c2f4c494e4b5f494e54524c5f49443e3c4d303131305f414c49474e5f3030333e203c2f4d303131305f414c49474e5f3030333e3c4752445f424e4b5f414343545f575f49443e303c2f4752445f424e4b5f414343545f575f49443e3c5055425f424e4b5f414343545f575f49443e203c2f5055425f424e4b5f414343545f575f49443e3c424e4b5f414343545f575f464d545f433e203c2f424e4b5f414343545f575f464d545f433e3c424e4b5f414343545f575f41435f49443e203c2f424e4b5f414343545f575f41435f49443e3c424e4b5f414343545f575f4c4e45315f543e203c2f424e4b5f414343545f575f4c4e45315f543e3c424e4b5f414343545f575f4c4e45325f543e203c2f424e4b5f414343545f575f4c4e45325f543e3c424e4b5f414343545f575f4c4e45335f543e203c2f424e4b5f414343545f575f4c4e45335f543e3c424e4b5f414343545f575f4c4e45345f543e203c2f424e4b5f414343545f575f4c4e45345f543e3c4752445f424e4b5f494e544d595f49443e303c2f4752445f424e4b5f494e544d595f49443e3c5055425f424e4b5f494e544d595f49443e3334353c2f5055425f424e4b5f494e544d595f49443e3c424e4b5f494e544d595f464d545f433e203c2f424e4b5f494e544d595f464d545f433e3c424e4b5f494e544d595f41435f49443e203c2f424e4b5f494e544d595f41435f49443e3c424e4b5f494e544d595f4c4e45315f543e203c2f424e4b5f494e544d595f4c4e45315f543e3c424e4b5f494e544d595f4c4e45325f543e203c2f424e4b5f494e544d595f4c4e45325f543e3c424e4b5f494e544d595f4c4e45335f543e203c2f424e4b5f494e544d595f4c4e45335f543e3c424e4b5f494e544d595f4c4e45345f543e203c2f424e4b5f494e544d595f4c4e45345f543e3c4752445f424e4b5f424e465f49443e3132333c2f4752445f424e4b5f424e465f49443e3c5055425f424e4b5f424e465f49443e203c2f5055425f424e4b5f424e465f49443e3c424e4b5f424e465f464d545f433e203c2f424e4b5f424e465f464d545f433e3c424e4b5f424e465f41435f49443e203c2f424e4b5f424e465f41435f49443e3c424e4b5f424e465f4c4e45315f543e203c2f424e4b5f424e465f4c4e45315f543e3c424e4b5f424e465f4c4e45325f543e203c2f424e4b5f424e465f4c4e45325f543e3c424e4b5f424e465f4c4e45335f543e203c2f424e4b5f424e465f4c4e45335f543e3c424e4b5f424e465f4c4e45345f543e203c2f424e4b5f424e465f4c4e45345f543e3c5041594d545f494e5354525f4c4e45315f543e203c2f5041594d545f494e5354525f4c4e45315f543e3c5041594d545f494e5354525f4c4e45325f543e783c2f5041594d545f494e5354525f4c4e45325f543e3c5041594d545f494e5354525f4c4e45335f543e793c2f5041594d545f494e5354525f4c4e45335f543e3c5041594d545f494e5354525f4c4e45345f543e7a3c2f5041594d545f494e5354525f4c4e45345f543e3c4d4f5348455f544553545f5049433939393e303c2f4d4f5348455f544553545f5049433939393e3c4d4f5348455f544553545f434f4d50315f5245414c5f46503e303c2f4d4f5348455f544553545f434f4d50315f5245414c5f46503e3c4d4f5348455f544553545f434f4d50325f44424c5f46503e303c2f4d4f5348455f544553545f434f4d50325f44424c5f46503e3c4d4f5348455f544553545f434f4d50335f50443e303c2f4d4f5348455f544553545f434f4d50335f50443e3c4d4f5348455f544553545f434f4d50343e303c2f4d4f5348455f544553545f434f4d50343e3c4d4f5348455f544553545f434f4d50355f494e543e303c2f4d4f5348455f544553545f434f4d50355f494e543e3c4d4f5348455f544553545f434f4d503e303c2f4d4f5348455f544553545f434f4d503e3c4d4f5348455f544553545f42494e4152593e303c2f4d4f5348455f544553545f42494e4152593e3c2f636173685f7061796d656e743e' FROM 1 FOR 9)''. The result was ''X'3c3f786d6c20766572'''.
2011-02-28 13:00:54.235538 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''SET xmlDclHex = SUBSTRING(InRootRef.*:*[4].*:*[2] FROM 1 FOR 5);'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '13.2').
2011-02-28 13:00:54.235763 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''InRootRef.*:*[4].*:*[2]'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '13.28'). This resolved to ''InRootRef.*:*[4].*:*[2]''. The result was ''X'3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e3c636173685f7061796d656e743e3c4752445f5359535f433e313c2f4752445f5359535f433e3c5055425f5359535f433e203c2f5055425f5359535f433e3c4752445f435553545f414343545f49443e3435363c2f4752445f435553545f414343545f49443e3c5055425f435553545f414343545f49443e203c2f5055425f435553545f414343545f49443e3c5041594d545f5345545f4c4f434e5f433e203c2f5041594d545f5345545f4c4f434e5f433e3c4752445f54524e5f5345545f4355525f433e203c2f4752445f54524e5f5345545f4355525f433e3c5055425f54524e5f5345545f4355525f433e203c2f5055425f54524e5f5345545f4355525f433e3c5041594d545f444c56595f494e5354525f433e203c2f5041594d545f444c56595f494e5354525f433e3c4d303131305f414c49474e5f3030313e203c2f4d303131305f414c49474e5f3030313e3c4752445f4c474c5f454e54595f49443e303c2f4752445f4c474c5f454e54595f49443e3c5055425f4c474c5f454e54595f49443e203c2f5055425f4c474c5f454e54595f49443e3c4752445f424f4f4b5f49443e303c2f4752445f424f4f4b5f49443e3c5055425f424f4f4b5f49443e203c2f5055425f424f4f4b5f49443e3c5041594d545f4445414c5f5459505f433e203c2f5041594d545f4445414c5f5459505f433e3c5041594d545f5345544c4d545f414d545f4d3e203c2f5041594d545f5345544c4d545f414d545f4d3e3c5041594d545f5041595f5243565f493e203c2f5041594d545f5041595f5243565f493e3c5345545f4d564d545f444154455f445a3e203c2f5345545f4d564d545f444154455f445a3e3c5041594d545f5245515f543e203c2f5041594d545f5245515f543e3c5041594d545f474c5f4d4e454d5f49443e203c2f5041594d545f474c5f4d4e454d5f49443e3c5041594d545f5245515f5459505f433e203c2f5041594d545f5245515f5459505f433e3c5041594d545f43414e435f434f525f433e203c2f5041594d545f43414e435f434f525f433e3c4d303131305f414c49474e5f3030323e203c2f4d303131305f414c49474e5f3030323e3c4752445f444550545f49443e303c2f4752445f444550545f49443e3c5055425f444550545f49443e203c2f5055425f444550545f49443e3c4752445f4e4f53545f49443e303c2f4752445f4e4f53545f49443e3c5055425f4e4f53545f49443e203c2f5055425f4e4f53545f49443e3c4c494e4b5f494e54524c5f49443e203c2f4c494e4b5f494e54524c5f49443e3c4d303131305f414c49474e5f3030333e203c2f4d303131305f414c49474e5f3030333e3c4752445f424e4b5f414343545f575f49443e303c2f4752445f424e4b5f414343545f575f49443e3c5055425f424e4b5f414343545f575f49443e203c2f5055425f424e4b5f414343545f575f49443e3c424e4b5f414343545f575f464d545f433e203c2f424e4b5f414343545f575f464d545f433e3c424e4b5f414343545f575f41435f49443e203c2f424e4b5f414343545f575f41435f49443e3c424e4b5f414343545f575f4c4e45315f543e203c2f424e4b5f414343545f575f4c4e45315f543e3c424e4b5f414343545f575f4c4e45325f543e203c2f424e4b5f414343545f575f4c4e45325f543e3c424e4b5f414343545f575f4c4e45335f543e203c2f424e4b5f414343545f575f4c4e45335f543e3c424e4b5f414343545f575f4c4e45345f543e203c2f424e4b5f414343545f575f4c4e45345f543e3c4752445f424e4b5f494e544d595f49443e303c2f4752445f424e4b5f494e544d595f49443e3c5055425f424e4b5f494e544d595f49443e3334353c2f5055425f424e4b5f494e544d595f49443e3c424e4b5f494e544d595f464d545f433e203c2f424e4b5f494e544d595f464d545f433e3c424e4b5f494e544d595f41435f49443e203c2f424e4b5f494e544d595f41435f49443e3c424e4b5f494e544d595f4c4e45315f543e203c2f424e4b5f494e544d595f4c4e45315f543e3c424e4b5f494e544d595f4c4e45325f543e203c2f424e4b5f494e544d595f4c4e45325f543e3c424e4b5f494e544d595f4c4e45335f543e203c2f424e4b5f494e544d595f4c4e45335f543e3c424e4b5f494e544d595f4c4e45345f543e203c2f424e4b5f494e544d595f4c4e45345f543e3c4752445f424e4b5f424e465f49443e3132333c2f4752445f424e4b5f424e465f49443e3c5055425f424e4b5f424e465f49443e203c2f5055425f424e4b5f424e465f49443e3c424e4b5f424e465f464d545f433e203c2f424e4b5f424e465f464d545f433e3c424e4b5f424e465f41435f49443e203c2f424e4b5f424e465f41435f49443e3c424e4b5f424e465f4c4e45315f543e203c2f424e4b5f424e465f4c4e45315f543e3c424e4b5f424e465f4c4e45325f543e203c2f424e4b5f424e465f4c4e45325f543e3c424e4b5f424e465f4c4e45335f543e203c2f424e4b5f424e465f4c4e45335f543e3c424e4b5f424e465f4c4e45345f543e203c2f424e4b5f424e465f4c4e45345f543e3c5041594d545f494e5354525f4c4e45315f543e203c2f5041594d545f494e5354525f4c4e45315f543e3c5041594d545f494e5354525f4c4e45325f543e783c2f5041594d545f494e5354525f4c4e45325f543e3c5041594d545f494e5354525f4c4e45335f543e793c2f5041594d545f494e5354525f4c4e45335f543e3c5041594d545f494e5354525f4c4e45345f543e7a3c2f5041594d545f494e5354525f4c4e45345f543e3c4d4f5348455f544553545f5049433939393e303c2f4d4f5348455f544553545f5049433939393e3c4d4f5348455f544553545f434f4d50315f5245414c5f46503e303c2f4d4f5348455f544553545f434f4d50315f5245414c5f46503e3c4d4f5348455f544553545f434f4d50325f44424c5f46503e303c2f4d4f5348455f544553545f434f4d50325f44424c5f46503e3c4d4f5348455f544553545f434f4d50335f50443e303c2f4d4f5348455f544553545f434f4d50335f50443e3c4d4f5348455f544553545f434f4d50343e303c2f4d4f5348455f544553545f434f4d50343e3c4d4f5348455f544553545f434f4d50355f494e543e303c2f4d4f5348455f544553545f434f4d50355f494e543e3c4d4f5348455f544553545f434f4d503e303c2f4d4f5348455f544553545f434f4d503e3c4d4f5348455f544553545f42494e4152593e303c2f4d4f5348455f544553545f42494e4152593e3c2f636173685f7061796d656e743e'''.
2011-02-28 13:00:54.236019 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''SUBSTRING(InRootRef.*:*[4].*:*[2] FROM 1 FOR 5)'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '13.18'). This resolved to ''SUBSTRING(X'3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e3c636173685f7061796d656e743e3c4752445f5359535f433e313c2f4752445f5359535f433e3c5055425f5359535f433e203c2f5055425f5359535f433e3c4752445f435553545f414343545f49443e3435363c2f4752445f435553545f414343545f49443e3c5055425f435553545f414343545f49443e203c2f5055425f435553545f414343545f49443e3c5041594d545f5345545f4c4f434e5f433e203c2f5041594d545f5345545f4c4f434e5f433e3c4752445f54524e5f5345545f4355525f433e203c2f4752445f54524e5f5345545f4355525f433e3c5055425f54524e5f5345545f4355525f433e203c2f5055425f54524e5f5345545f4355525f433e3c5041594d545f444c56595f494e5354525f433e203c2f5041594d545f444c56595f494e5354525f433e3c4d303131305f414c49474e5f3030313e203c2f4d303131305f414c49474e5f3030313e3c4752445f4c474c5f454e54595f49443e303c2f4752445f4c474c5f454e54595f49443e3c5055425f4c474c5f454e54595f49443e203c2f5055425f4c474c5f454e54595f49443e3c4752445f424f4f4b5f49443e303c2f4752445f424f4f4b5f49443e3c5055425f424f4f4b5f49443e203c2f5055425f424f4f4b5f49443e3c5041594d545f4445414c5f5459505f433e203c2f5041594d545f4445414c5f5459505f433e3c5041594d545f5345544c4d545f414d545f4d3e203c2f5041594d545f5345544c4d545f414d545f4d3e3c5041594d545f5041595f5243565f493e203c2f5041594d545f5041595f5243565f493e3c5345545f4d564d545f444154455f445a3e203c2f5345545f4d564d545f444154455f445a3e3c5041594d545f5245515f543e203c2f5041594d545f5245515f543e3c5041594d545f474c5f4d4e454d5f49443e203c2f5041594d545f474c5f4d4e454d5f49443e3c5041594d545f5245515f5459505f433e203c2f5041594d545f5245515f5459505f433e3c5041594d545f43414e435f434f525f433e203c2f5041594d545f43414e435f434f525f433e3c4d303131305f414c49474e5f3030323e203c2f4d303131305f414c49474e5f3030323e3c4752445f444550545f49443e303c2f4752445f444550545f49443e3c5055425f444550545f49443e203c2f5055425f444550545f49443e3c4752445f4e4f53545f49443e303c2f4752445f4e4f53545f49443e3c5055425f4e4f53545f49443e203c2f5055425f4e4f53545f49443e3c4c494e4b5f494e54524c5f49443e203c2f4c494e4b5f494e54524c5f49443e3c4d303131305f414c49474e5f3030333e203c2f4d303131305f414c49474e5f3030333e3c4752445f424e4b5f414343545f575f49443e303c2f4752445f424e4b5f414343545f575f49443e3c5055425f424e4b5f414343545f575f49443e203c2f5055425f424e4b5f414343545f575f49443e3c424e4b5f414343545f575f464d545f433e203c2f424e4b5f414343545f575f464d545f433e3c424e4b5f414343545f575f41435f49443e203c2f424e4b5f414343545f575f41435f49443e3c424e4b5f414343545f575f4c4e45315f543e203c2f424e4b5f414343545f575f4c4e45315f543e3c424e4b5f414343545f575f4c4e45325f543e203c2f424e4b5f414343545f575f4c4e45325f543e3c424e4b5f414343545f575f4c4e45335f543e203c2f424e4b5f414343545f575f4c4e45335f543e3c424e4b5f414343545f575f4c4e45345f543e203c2f424e4b5f414343545f575f4c4e45345f543e3c4752445f424e4b5f494e544d595f49443e303c2f4752445f424e4b5f494e544d595f49443e3c5055425f424e4b5f494e544d595f49443e3334353c2f5055425f424e4b5f494e544d595f49443e3c424e4b5f494e544d595f464d545f433e203c2f424e4b5f494e544d595f464d545f433e3c424e4b5f494e544d595f41435f49443e203c2f424e4b5f494e544d595f41435f49443e3c424e4b5f494e544d595f4c4e45315f543e203c2f424e4b5f494e544d595f4c4e45315f543e3c424e4b5f494e544d595f4c4e45325f543e203c2f424e4b5f494e544d595f4c4e45325f543e3c424e4b5f494e544d595f4c4e45335f543e203c2f424e4b5f494e544d595f4c4e45335f543e3c424e4b5f494e544d595f4c4e45345f543e203c2f424e4b5f494e544d595f4c4e45345f543e3c4752445f424e4b5f424e465f49443e3132333c2f4752445f424e4b5f424e465f49443e3c5055425f424e4b5f424e465f49443e203c2f5055425f424e4b5f424e465f49443e3c424e4b5f424e465f464d545f433e203c2f424e4b5f424e465f464d545f433e3c424e4b5f424e465f41435f49443e203c2f424e4b5f424e465f41435f49443e3c424e4b5f424e465f4c4e45315f543e203c2f424e4b5f424e465f4c4e45315f543e3c424e4b5f424e465f4c4e45325f543e203c2f424e4b5f424e465f4c4e45325f543e3c424e4b5f424e465f4c4e45335f543e203c2f424e4b5f424e465f4c4e45335f543e3c424e4b5f424e465f4c4e45345f543e203c2f424e4b5f424e465f4c4e45345f543e3c5041594d545f494e5354525f4c4e45315f543e203c2f5041594d545f494e5354525f4c4e45315f543e3c5041594d545f494e5354525f4c4e45325f543e783c2f5041594d545f494e5354525f4c4e45325f543e3c5041594d545f494e5354525f4c4e45335f543e793c2f5041594d545f494e5354525f4c4e45335f543e3c5041594d545f494e5354525f4c4e45345f543e7a3c2f5041594d545f494e5354525f4c4e45345f543e3c4d4f5348455f544553545f5049433939393e303c2f4d4f5348455f544553545f5049433939393e3c4d4f5348455f544553545f434f4d50315f5245414c5f46503e303c2f4d4f5348455f544553545f434f4d50315f5245414c5f46503e3c4d4f5348455f544553545f434f4d50325f44424c5f46503e303c2f4d4f5348455f544553545f434f4d50325f44424c5f46503e3c4d4f5348455f544553545f434f4d50335f50443e303c2f4d4f5348455f544553545f434f4d50335f50443e3c4d4f5348455f544553545f434f4d50343e303c2f4d4f5348455f544553545f434f4d50343e3c4d4f5348455f544553545f434f4d50355f494e543e303c2f4d4f5348455f544553545f434f4d50355f494e543e3c4d4f5348455f544553545f434f4d503e303c2f4d4f5348455f544553545f434f4d503e3c4d4f5348455f544553545f42494e4152593e303c2f4d4f5348455f544553545f42494e4152593e3c2f636173685f7061796d656e743e' FROM 1 FOR 5)''. The result was ''X'3c3f786d6c'''.
2011-02-28 13:00:54.236045 7776 UserTrace BIP2537I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Executing statement ''SET eyecatcherHex = SUBSTRING(InRootRef.*:*[4].*:*[2] FROM 1 FOR 4);'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '15.2').
2011-02-28 13:00:54.236263 7776 UserTrace BIP2539I: Node 'PUBLISH_SRVC_V100.PBS01_PUB_BASIC_V100.Publisher': Evaluating expression ''InRootRef.*:*[4].*:*[2]'' at ('SHAREDUTIL_V100.GetInputMsgContextPub', '15.32'). This resolved to ''InRootRef.*:*[4].*:*[2]''. The result was ''X'3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e3c636173685f7061796d656e743e3c4752445f5359535f433e313c2f4752445f5359535f433e3c5055425f5359535f433e203c2f5055425f5359535f433e3c4752445f435553545f414343545f49443e3435363c2f4752445f435553545f414343545f49443e3c5055425f435553545f414343545f49443e203c2f5055425f435553545f414343545f49443e3c5041594d545f5345545f4c4f434e5f433e203c2f5041594d545f5345545f4c4f434e5f433e3c4752445f54524e5f5345545f4355525f433e203c2f4752445f54524e5f5345545f4355525f433e3c5055425f54524e5f5345545f4355525f433e203c2f5055425f54524e5f5345545f4355525f433e3c5041594d545f444c56595f494e5354525f433e203c2f5041594d545f444c56595f494e5354525f433e3c4d303131305f414c49474e5f3030313e203c2f4d303131305f414c49474e5f3030313e3c4752445f4c474c5f454e54595f49443e303c2f4752445f4c474c5f454e54595f49443e3c5055425f4c474c5f454e54595f49443e203c2f5055425f4c474c5f454e54595f49443e3c4752445f424f4f4b5f49443e303c2f4752445f424f4f4b5f49443e3c5055425f424f4f4b5f49443e203c2f5055425f424f4f4b5f49443e3c5041594d545f4445414c5f5459505f433e203c2f5041594d545f4445414c5f5459505f433e3c5041594d545f5345544c4d545f414d545f4d3e203c2f5041594d545f5345544c4d545f414d545f4d3e3c5041594d545f5041595f5243565f493e203c2f5041594d545f5041595f5243565f493e3c5345545f4d564d545f444154455f445a3e203c2f5345545f4d564d545f444154455f445a3e3c5041594d545f5245515f543e203c2f5041594d545f5245515f543e3c5041594d545f474c5f4d4e454d5f49443e203c2f5041594d545f474c5f4d4e454d5f49443e3c5041594d545f5245515f5459505f433e203c2f5041594d545f5245515f5459505f433e3c5041594d545f43414e435f434f525f433e203c2f5041594d545f43414e435f434f525f433e3c4d303131305f414c49474e5f3030323e203c2f4d303131305f414c49474e5f3030323e3c4752445f444550545f49443e303c2f4752445f444550545f49443e3c5055425f444550545f49443e203c2f5055425f444550545f49443e3c4752445f4e4f53545f49443e303c2f4752445f4e4f53545f49443e3c5055425f4e4f53545f49443e203c2f5055425f4e4f53545f49443e3c4c494e4b5f494e54524c5f49443e203c2f4c494e4b5f494e54524c5f49443e3c4d303131305f414c49474e5f3030333e203c2f4d303131305f414c49474e5f3030333e3c4752445f424e4b5f414343545f575f49443e303c2f4752445f424e4b5f414343545f575f49443e3c5055425f424e4b5f414343545f575f49443e203c2f5055425f424e4b5f414343545f575f49443e3c424e4b5f414343545f575f464d545f433e203c2f424e4b5f414343545f575f464d545f433e3c424e4b5f414343545f575f41435f49443e203c2f424e4b5f414343545f575f41435f49443e3c424e4b5f414343545f575f4c4e45315f543e203c2f424e4b5f414343545f575f4c4e45315f543e3c424e4b5f414343545f575f4c4e45325f543e203c2f424e4b5f414343545f575f4c4e45325f543e3c424e4b5f414343545f575f4c4e45335f543e203c2f424e4b5f414343545f575f4c4e45335f543e3c424e4b5f414343545f575f4c4e45345f543e203c2f424e4b5f414343545f575f4c4e45345f543e3c4752445f424e4b5f494e544d595f49443e303c2f4752445f424e4b5f494e544d595f49443e3c5055425f424e4b5f494e544d595f49443e3334353c2f5055425f424e4b5f494e544d595f49443e3c424e4b5f494e544d595f464d545f433e203c2f424e4b5f494e544d595f464d545f433e3c424e4b5f494e544d595f41435f49443e203c2f424e4b5f494e544d595f41435f49443e3c424e4b5f494e544d595f4c4e45315f543e203c2f424e4b5f494e544d595f4c4e45315f543e3c424e4b5f494e544d595f4c4e45325f543e203c2f424e4b5f494e544d595f4c4e45325f543e3c424e4b5f494e544d595f4c4e45335f543e203c2f424e4b5f494e544d595f4c4e45335f543e3c424e4b5f494e544d595f4c4e45345f543e203c2f424e4b5f494e544d595f4c4e45345f543e3c4752445f424e4b5f424e465f49443e3132333c2f4752445f424e4b5f424e465f49443e3c5055425f424e4b5f424e465f49443e203c2f5055425f424e4b5f424e465f49443e3c424e4b5f424e465f464d545f433e203c2f424e4b5f424e465f464d545f433e3c424e4b5f424e465f41435f49443e203c2f424e4b5f424e465f41435f49443e3c424e4b5f424e465f4c4e45315f543e203c2f424e4b5f424e465f4c4e45315f543e3c424e4b5f424e465f4c4e45325f543e203c2f424e4b5f424e465f4c4e45325f543e3c424e4b5f424e465f4c4e45335f543e203c2f424e4b5f424e465f4c4e45335f543e3c424e4b5f424e465f4c4e45345f543e203c2f424e4b5f424e465f4c4e45345f543e3c5041594d545f494e5354525f4c4e45315f543e203c2f5041594d545f494e5354525f4c4e45315f543e3c5041594d545f494e5354525f4c4e45325f543e783c2f5041594d545f494e5354525f4c4e45325f543e3c5041594d545f494e5354525f4c4e45335f543e793c2f5041594d545f494e5354525f4c4e45335f543e3c5041594d545f494e5354525f4c4e45345f543e7a3c2f5041594d545f494e5354525f4c4e45345f543e3c4d4f5348455f544553545f5049433939393e303c2f4d4f5348455f544553545f5049433939393e3c4d4f5348455f544553545f434f4d50315f5245414c5f46503e303c2f4d4f5348455f544553545f434f4d50315f5245414c5f46503e3c4d4f5348455f544553545f434f4d50325f44424c5f46503e303c2f4d4f5348455f544553545f434f4d50325f44424c5f465
Back to top
View user's profile Send private message Send e-mail MSN Messenger
kimbert
PostPosted: Mon Feb 28, 2011 11:08 am    Post subject: Reply with quote

Jedi Council

Joined: 29 Jul 2003
Posts: 5542
Location: Southampton

- you can ignore the missing BIP message. Looks as if it's just a warning about a missing entry in the message catalog.
- your user trace is very long, but
- your user trace does not contain any of the error messages that you quoted above. This might be because you need to use a larger trace file size ( the -c parameter on mqsichangetrace, if I remember correctly ).
- the XMLS parser is only used internally by message broker - it is not the parser that issued the error messages.

When you post the next user trace, please
- put it in [c o d e] tags
- check that it contains the required information ( the BIP messages that you quoted in the exception list).
Back to top
View user's profile Send private message
smdavies99
PostPosted: Mon Feb 28, 2011 12:35 pm    Post subject: Reply with quote

Jedi Council

Joined: 10 Feb 2003
Posts: 6076
Location: Somewhere over the Rainbow this side of Never-never land.

Sesch the trace output file for errors with a severity of type 'E'.

For example:-
Quote:

UserTrace BIP5006E:

Obviously the actual numbers will change according to your error(s) and there will be more than one of them.
Cut those out and post only those here.
_________________
WMQ User since 1999
MQSI/WBI/WMB/'Thingy' User since 2002
Linux user since 1995

Every time you reinvent the wheel the more square it gets (anon). If in doubt think and investigate before you ask silly questions.
Back to top
View user's profile Send private message
rekarm01
PostPosted: Wed Mar 02, 2011 1:44 am    Post subject: Re: Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 1415

It is difficult to read or respond to posts with excessively long lines. Use the 'Edit' button in the upper right corner to wrap or truncate the offending lines.

[code] tags are also useful for preserving formatted text.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Windows XP - Broker 7.0.1: CREATE + PARSE + VALIDATE
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.