|   | 
	 
  
    | 
RSS Feed - WebSphere MQ Support
 | 
RSS Feed - Message Broker Support
 |   
 
  
	|  Issue with remove default namespace in JCN. | 
	« View previous topic :: View next topic »  | 
   
  
  	
	  
		
		
		  | Author | 
		  Message
		 |  
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Mon May 02, 2016 1:43 am    Post subject: Issue with remove default namespace in JCN. | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi Team,
 
I wanted to remove default namespace from Java Compute Node. For that I got MbElement reference and set to empty string.But it is not work.
 
   
	| Code: | 
   
  
	
 
<TAX-RECORD>
 
<BATCH-ID>20141120143649</BATCH-ID>
 
<ITEM-DETAILS XMLNSC="http://www.ibm.com/xmlnsc/item">
 
<TAX-FLOW>OLD</TAX-FLOW>
 
<CNTRY-CODE>US</CNTRY-CODE>
 
<ITEM-NBR>0000000001</ITEM-NBR>
 
</ITEM-DETAILS>
 
</TAX-RECORD>
 
 | 
   
 
 
In above XML , I wanted to remove namespace of "TAX-RECORD/ITEM-DETAILS".Could you please help us. _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Mon May 02, 2016 4:19 am    Post subject: Re: Issue with remove default namespace in JCN. | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
			  
				
   
	| mahesh2069 wrote: | 
   
  
	Hi Team,
 
I wanted to remove default namespace from Java Compute Node. For that I got MbElement reference and set to empty string.But it is not work.
 
   
	| Code: | 
   
  
	
 
<TAX-RECORD>
 
<BATCH-ID>20141120143649</BATCH-ID>
 
<ITEM-DETAILS XMLNSC="http://www.ibm.com/xmlnsc/item">
 
<TAX-FLOW>OLD</TAX-FLOW>
 
<CNTRY-CODE>US</CNTRY-CODE>
 
<ITEM-NBR>0000000001</ITEM-NBR>
 
</ITEM-DETAILS>
 
</TAX-RECORD>
 
 | 
   
 
 
In above XML , I wanted to remove namespace of "TAX-RECORD/ITEM-DETAILS".Could you please help us. | 
   
 
 
 
There is documentation on how to access and manipulate namespaces in the XMLNSC parser.
 
 
The logical message tree attaches the namespace to each and every node that is in that namespace.  So if you really want to *remove* it, you will have to remove it from every node that has it.
 
 
You very likely don't need/want to remove it.  Possibly change it.  Or you are dealing with a horrible XML parser - likely something someone decide to build themselves "because it's faster" or "easier to use" or "I want to show everyone how smart I am" (without understanding that it does the opposite). _________________ chmod  -R ugo-wx / | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | joebuckeye | 
		  
		    
			  
				 Posted: Mon May 02, 2016 4:51 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		    Partisan
 
 Joined: 24 Aug 2007 Posts: 365 Location: Columbus, OH 
  | 
		  
		    
			  
				Either your sample XML has a typo in it or what you want removed is not a namespace.
 
 
   
	| Code: | 
   
  
	| <ITEM-DETAILS XMLNSC="http://www.ibm.com/xmlnsc/item"> | 
   
 
 
 
Either XMLNSC should be XMLNS or you have a very confusingly named attribute called XMLNSC (after the parser?). | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Tue May 03, 2016 12:44 am    Post subject: Still unable to remove namespace | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi joebuckeye,
 
I have given wrong namespace instead of "xmlns" had given as "XMLNSC".
 
Using evaluateXpath() method I got reference of "ITEM-DETAILS" element.
 
 I was set namespace using setNamespace("") method to remove namespace,still default schema is exist.
 
Could you help us to remove default namespace in "ITEM-DETAILS" element. _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Tue May 03, 2016 4:19 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
			  
				There's a difference between removing the namespace on an element and removing a namespace declaration.
 
 
One is a property of an element, the other is an XML attribute.
 
 
Again, if you wish to remove a namespace from an element and all of it's children, you need to explicitly remove it from all of it's children.
 
 
If you remove the namespace declaration without removing the namespace, or without setting a declaration lower in the tree - you will find that XML parsers are not happy with you. _________________ chmod  -R ugo-wx / | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Tue May 03, 2016 5:25 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi mqjeff,
 
I wanted to remove default namespace.Please find my expected xml structure 
 
   
	| Code: | 
   
  
	
 
<TAX-RECORD> 
 
<BATCH-ID>20141120143649</BATCH-ID> 
 
<ITEM-DETAILS> 
 
<TAX-FLOW>OLD</TAX-FLOW> 
 
<CNTRY-CODE>US</CNTRY-CODE> 
 
<ITEM-NBR>0000000001</ITEM-NBR> 
 
</ITEM-DETAILS> 
 
</TAX-RECORD>
 
 | 
   
 
 
 
Could you help me how to  remove that namespace from "ITEM-DETAILS" tree. _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Tue May 03, 2016 5:48 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
			  
				Show a trace of ${Root} for the message tree. _________________ chmod  -R ugo-wx / | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Wed May 04, 2016 1:20 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi mqjeff,
 
I unable to get you.Could you please tell me in detail. _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Wed May 04, 2016 5:01 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
			  
				
   
	| mahesh2069 wrote: | 
   
  
	Hi mqjeff,
 
I unable to get you.Could you please tell me in detail. | 
   
 
 
 
There is a Trace node.  It provides the value of whatever you tell it to output - either to a file or to usertrace.
 
 
Please consult the documentation on the use of the Trace node. _________________ chmod  -R ugo-wx / | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Thu May 05, 2016 5:24 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi mqjeff,
 
Please find usertrace of my flow.
 
[code:1:1c3b990b10]
 
Timestamps are formatted in local time, 330 minutes past GMT.
 
Trace written by version 9002; formatter version 9002 (build S900-FP02 on amd64_nt_4)
 
 
2016-05-05 18:50:41.661156    22184   UserTrace   BIP4040I: The Execution Group ''default'' 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. 
 
2016-05-05 18:50:41.662804    22184   UserTrace   BIP2638I: The MQ output node '.outputNode' attempted to write a message to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' connected to queue manager ''IB9QMGR1''. The MQCC was '0' and the MQRC was '0'. 
 
2016-05-05 18:50:41.662820    22184   UserTrace   BIP2622I: Message successfully output by output node '.outputNode' to queue ''SYSTEM.BROKER.EXECUTIONGROUP.REPLY'' on queue manager ''IB9QMGR1''. 
 
2016-05-05 18:50:41.663260    22184   Information  BIP2154I: Execution group finished with Configuration message. 
 
                                       A command response will be sent to the broker. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.399252    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f120, '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. 
 
2016-05-05 18:50:46.399296    21016   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. 
 
2016-05-05 18:50:46.399396    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.399484    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.399740    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.399776    21016   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. 
 
2016-05-05 18:50:46.399852    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.399952    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''TotalMapActions''. 
 
                                       Element ''Name'' has been changed to ''TotalMapActions''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400040    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400260    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.400300    21016   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. 
 
2016-05-05 18:50:46.400380    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400460    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''MapReads''. 
 
                                       Element ''Name'' has been changed to ''MapReads''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400520    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400592    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.400632    21016   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. 
 
2016-05-05 18:50:46.400708    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400788    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''MapWrites''. 
 
                                       Element ''Name'' has been changed to ''MapWrites''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400844    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.400916    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.400960    21016   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. 
 
2016-05-05 18:50:46.401036    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401116    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''MapRemoves''. 
 
                                       Element ''Name'' has been changed to ''MapRemoves''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401176    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401248    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.401288    21016   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. 
 
2016-05-05 18:50:46.401372    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401452    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FailedActions''. 
 
                                       Element ''Name'' has been changed to ''FailedActions''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401512    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401584    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.401624    21016   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. 
 
2016-05-05 18:50:46.401700    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401780    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''MapsUsed''. 
 
                                       Element ''Name'' has been changed to ''MapsUsed''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401836    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.401912    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.401952    21016   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. 
 
2016-05-05 18:50:46.402048    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.402132    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''ConnectionFailures''. 
 
                                       Element ''Name'' has been changed to ''ConnectionFailures''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.402188    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.402260    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f240, '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. 
 
2016-05-05 18:50:46.402300    21016   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. 
 
2016-05-05 18:50:46.402376    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.402456    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''Connects''. 
 
                                       Element ''Name'' has been changed to ''Connects''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.402516    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.403044    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62f7e0, '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. 
 
2016-05-05 18:50:46.403084    21016   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. 
 
2016-05-05 18:50:46.403176    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.403260    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.405108    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c62fea0, '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. 
 
2016-05-05 18:50:46.405148    21016   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. 
 
2016-05-05 18:50:46.405240    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.405316    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.406480    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630320, '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. 
 
2016-05-05 18:50:46.406516    21016   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. 
 
2016-05-05 18:50:46.406592    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.406672    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.406908    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630440, '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. 
 
2016-05-05 18:50:46.406944    21016   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. 
 
2016-05-05 18:50:46.407092    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407176    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FTPGets''. 
 
                                       Element ''Name'' has been changed to ''FTPGets''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407240    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407316    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630440, '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. 
 
2016-05-05 18:50:46.407352    21016   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. 
 
2016-05-05 18:50:46.407428    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407504    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''BytesReceived''. 
 
                                       Element ''Name'' has been changed to ''BytesReceived''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407564    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407636    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630440, '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. 
 
2016-05-05 18:50:46.407672    21016   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. 
 
2016-05-05 18:50:46.407744    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407824    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FTPPuts''. 
 
                                       Element ''Name'' has been changed to ''FTPPuts''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.407884    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.408060    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630440, '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. 
 
2016-05-05 18:50:46.408108    21016   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. 
 
2016-05-05 18:50:46.408184    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.408264    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''BytesSent''. 
 
                                       Element ''Name'' has been changed to ''BytesSent''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.408324    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.408936    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630830, '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. 
 
2016-05-05 18:50:46.408972    21016   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. 
 
2016-05-05 18:50:46.409120    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409204    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409444    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630950, '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. 
 
2016-05-05 18:50:46.409480    21016   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. 
 
2016-05-05 18:50:46.409552    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409632    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''InboundTransfers''. 
 
                                       Element ''Name'' has been changed to ''InboundTransfers''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409692    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409764    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630950, '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. 
 
2016-05-05 18:50:46.409800    21016   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. 
 
2016-05-05 18:50:46.409876    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.409956    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''InboundBytes''. 
 
                                       Element ''Name'' has been changed to ''InboundBytes''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410100    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410204    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630950, '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. 
 
2016-05-05 18:50:46.410260    21016   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. 
 
2016-05-05 18:50:46.410336    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410416    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''NoHitTransfers''. 
 
                                       Element ''Name'' has been changed to ''NoHitTransfers''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410472    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410544    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630950, '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. 
 
2016-05-05 18:50:46.410580    21016   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. 
 
2016-05-05 18:50:46.410676    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410756    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''OutboundTransfers''. 
 
                                       Element ''Name'' has been changed to ''OutboundTransfers''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410812    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.410888    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630950, '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. 
 
2016-05-05 18:50:46.410928    21016   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. 
 
2016-05-05 18:50:46.411020    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.411160    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''OutboundBytes''. 
 
                                       Element ''Name'' has been changed to ''OutboundBytes''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.411216    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.411728    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c630fd0, '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. 
 
2016-05-05 18:50:46.411768    21016   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. 
 
2016-05-05 18:50:46.411900    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.411984    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412260    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c6310f0, '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. 
 
2016-05-05 18:50:46.412296    21016   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. 
 
2016-05-05 18:50:46.412368    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412448    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''InboundTransfers''. 
 
                                       Element ''Name'' has been changed to ''InboundTransfers''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412508    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412580    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c6310f0, '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. 
 
2016-05-05 18:50:46.412616    21016   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. 
 
2016-05-05 18:50:46.412688    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412768    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''InboundBytes''. 
 
                                       Element ''Name'' has been changed to ''InboundBytes''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412828    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.412896    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c6310f0, '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. 
 
2016-05-05 18:50:46.412932    21016   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. 
 
2016-05-05 18:50:46.413016    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.413104    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''OutboundTransfers''. 
 
                                       Element ''Name'' has been changed to ''OutboundTransfers''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.413164    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.413236    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c6310f0, '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. 
 
2016-05-05 18:50:46.413272    21016   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. 
 
2016-05-05 18:50:46.413344    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.413424    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''OutboundBytes''. 
 
                                       Element ''Name'' has been changed to ''OutboundBytes''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.413480    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414100    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631450, '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. 
 
2016-05-05 18:50:46.414140    21016   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. 
 
2016-05-05 18:50:46.414212    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414292    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414524    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.414560    21016   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. 
 
2016-05-05 18:50:46.414632    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414716    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FilesRead''. 
 
                                       Element ''Name'' has been changed to ''FilesRead''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414772    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.414840    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.414880    21016   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. 
 
2016-05-05 18:50:46.414956    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415112    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''RecordsRead''. 
 
                                       Element ''Name'' has been changed to ''RecordsRead''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415168    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415240    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.415280    21016   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. 
 
2016-05-05 18:50:46.415348    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415444    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''BytesRead''. 
 
                                       Element ''Name'' has been changed to ''BytesRead''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415508    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415580    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.415620    21016   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. 
 
2016-05-05 18:50:46.415692    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415844    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FilesCreated''. 
 
                                       Element ''Name'' has been changed to ''FilesCreated''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415900    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.415972    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.416024    21016   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. 
 
2016-05-05 18:50:46.416104    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.416184    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''RecordsWritten''. 
 
                                       Element ''Name'' has been changed to ''RecordsWritten''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.416240    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.416308    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631570, '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. 
 
2016-05-05 18:50:46.416348    21016   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. 
 
2016-05-05 18:50:46.416420    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.416500    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''BytesWritten''. 
 
                                       Element ''Name'' has been changed to ''BytesWritten''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.416556    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.417116    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c6319f0, '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. 
 
2016-05-05 18:50:46.417152    21016   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. 
 
2016-05-05 18:50:46.417224    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.417300    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.418176    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c631de0, '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. 
 
2016-05-05 18:50:46.418212    21016   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. 
 
2016-05-05 18:50:46.418284    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.418364    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.419752    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c632410, '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. 
 
2016-05-05 18:50:46.419788    21016   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. 
 
2016-05-05 18:50:46.419860    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '16777216'. 
 
                                       Element ''Type'' has been changed to '16777216'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.419936    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''resourceIdentifier''. 
 
                                       Element ''Name'' has been changed to ''resourceIdentifier''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420192    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c632530, '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. 
 
2016-05-05 18:50:46.420232    21016   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. 
 
2016-05-05 18:50:46.420300    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420376    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''SuccessfulDecisions''. 
 
                                       Element ''Name'' has been changed to ''SuccessfulDecisions''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420432    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420500    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c632530, '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. 
 
2016-05-05 18:50:46.420540    21016   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. 
 
2016-05-05 18:50:46.420608    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420684    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''FailedDecisions''. 
 
                                       Element ''Name'' has been changed to ''FailedDecisions''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420740    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.420808    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c632530, '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. 
 
2016-05-05 18:50:46.420852    21016   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. 
 
2016-05-05 18:50:46.420936    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Type'. Changing value from '0' to '50331648'. 
 
                                       Element ''Type'' has been changed to '50331648'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.421040    21016   UserTrace   BIP4142I: Evaluating cniElementSet'Name'. Changing value from '''' to ''RulesMatched''. 
 
                                       Element ''Name'' has been changed to ''RulesMatched''. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.421116    21016   UserTrace   BIP4142I: Evaluating cniElementSet'IntegerValue'. Changing value from ''NULL'' to '0'. 
 
                                       Element ''IntegerValue'' has been changed to '0'. 
 
                                       No user action required. 
 
2016-05-05 18:50:46.421604    21016   UserTrace   BIP4144I: Entered function 'cniCreateElementAsLastChild'((*ptr)392ce480, (*ptr)2c632800, 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A', 'N/A',  _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Thu May 05, 2016 5:28 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Fri May 06, 2016 3:11 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi mqjeff,
 
   
	| Code: | 
   
  
	
 
Root= ( ['MQROOT' : 0x2cfe3c80]
 
  (0x01000000:Name):Properties = (
 
    (0x03000000:NameValue):MessageSet             = '' (CHARACTER)
 
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
 
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
 
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
 
    (0x03000000:NameValue):CodedCharSetId         = 437 (INTEGER)
 
    (0x03000000:NameValue):Transactional          = TRUE (BOOLEAN)
 
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
 
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2016-05-06 11:06:00.860' (GMTTIMESTAMP)
 
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
 
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
 
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):ReplyProtocol          = 'MQ' (CHARACTER)
 
    (0x03000000:NameValue):Topic                  = NULL
 
    (0x03000000:NameValue):ContentType            = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
 
  )
 
  (0x01000000:Name):MQMD       = (
 
    (0x03000000:NameValue):SourceQueue      = 'Q1' (CHARACTER)
 
    (0x03000000:NameValue):Transactional    = TRUE (BOOLEAN)
 
    (0x03000000:NameValue):Encoding         = 546 (INTEGER)
 
    (0x03000000:NameValue):CodedCharSetId   = 437 (INTEGER)
 
    (0x03000000:NameValue):Format           = '        ' (CHARACTER)
 
    (0x03000000:NameValue):Version          = 2 (INTEGER)
 
    (0x03000000:NameValue):Report           = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgType          = 8 (INTEGER)
 
    (0x03000000:NameValue):Expiry           = -1 (INTEGER)
 
    (0x03000000:NameValue):Feedback         = 0 (INTEGER)
 
    (0x03000000:NameValue):Priority         = 0 (INTEGER)
 
    (0x03000000:NameValue):Persistence      = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgId            = X'414d5120494239514d47523120202020b9642c5720009202' (BLOB)
 
    (0x03000000:NameValue):CorrelId         = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):BackoutCount     = 0 (INTEGER)
 
    (0x03000000:NameValue):ReplyToQ         = '                                                ' (CHARACTER)
 
    (0x03000000:NameValue):ReplyToQMgr      = 'IB9QMGR1                                        ' (CHARACTER)
 
    (0x03000000:NameValue):UserIdentifier   = 'miracle     ' (CHARACTER)
 
    (0x03000000:NameValue):AccountingToken  = X'160105150000006c5b8165143a0cb6175e669ce803000000000000000000000b' (BLOB)
 
    (0x03000000:NameValue):ApplIdentityData = '                                ' (CHARACTER)
 
    (0x03000000:NameValue):PutApplType      = 11 (INTEGER)
 
    (0x03000000:NameValue):PutApplName      = '\miracle\Desktop\rfhutil.exe' (CHARACTER)
 
    (0x03000000:NameValue):PutDate          = DATE '2016-05-06' (DATE)
 
    (0x03000000:NameValue):PutTime          = GMTTIME '11:06:00.860' (GMTTIME)
 
    (0x03000000:NameValue):ApplOriginData   = '    ' (CHARACTER)
 
    (0x03000000:NameValue):GroupId          = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):MsgSeqNumber     = 1 (INTEGER)
 
    (0x03000000:NameValue):Offset           = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgFlags         = 0 (INTEGER)
 
    (0x03000000:NameValue):OriginalLength   = -1 (INTEGER)
 
  )
 
  (0x01000000:Name):XMLNSC     = (
 
    (0x01000000:Name):TAX-RECORD = (
 
      (0x03000000:NameValue):BATCH-ID     = '20141120143649' (CHARACTER)
 
      (0x01000000:Name     ):ITEM-DETAILS = (
 
        (0x03000000:NameValue):xmlns                                    = 'http://www.ibm.com/xmlnsc/item' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:TAX-FLOW   = 'OLD' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:CNTRY-CODE = 'US' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:ITEM-NBR   = '0000000001' (CHARACTER)
 
      )
 
    )
 
  )
 
)
 
Root= ( ['MQROOT' : 0x24b0e1b0]
 
  (0x01000000:Name):Properties = (
 
    (0x03000000:NameValue):MessageSet             = '' (CHARACTER)
 
    (0x03000000:NameValue):MessageType            = '' (CHARACTER)
 
    (0x03000000:NameValue):MessageFormat          = '' (CHARACTER)
 
    (0x03000000:NameValue):Encoding               = 546 (INTEGER)
 
    (0x03000000:NameValue):CodedCharSetId         = 437 (INTEGER)
 
    (0x03000000:NameValue):Transactional          = TRUE (BOOLEAN)
 
    (0x03000000:NameValue):Persistence            = FALSE (BOOLEAN)
 
    (0x03000000:NameValue):CreationTime           = GMTTIMESTAMP '2016-05-06 11:06:32.120' (GMTTIMESTAMP)
 
    (0x03000000:NameValue):ExpirationTime         = -1 (INTEGER)
 
    (0x03000000:NameValue):Priority               = 0 (INTEGER)
 
    (0x03000000:NameValue):ReplyIdentifier        = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):ReplyProtocol          = 'MQ' (CHARACTER)
 
    (0x03000000:NameValue):Topic                  = NULL
 
    (0x03000000:NameValue):ContentType            = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceType     = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceToken    = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourcePassword = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentitySourceIssuedBy = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedType     = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedToken    = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedPassword = '' (CHARACTER)
 
    (0x03000000:NameValue):IdentityMappedIssuedBy = '' (CHARACTER)
 
  )
 
  (0x01000000:Name):MQMD       = (
 
    (0x03000000:NameValue):SourceQueue      = 'Q1' (CHARACTER)
 
    (0x03000000:NameValue):Transactional    = TRUE (BOOLEAN)
 
    (0x03000000:NameValue):Encoding         = 546 (INTEGER)
 
    (0x03000000:NameValue):CodedCharSetId   = 437 (INTEGER)
 
    (0x03000000:NameValue):Format           = '        ' (CHARACTER)
 
    (0x03000000:NameValue):Version          = 2 (INTEGER)
 
    (0x03000000:NameValue):Report           = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgType          = 8 (INTEGER)
 
    (0x03000000:NameValue):Expiry           = -1 (INTEGER)
 
    (0x03000000:NameValue):Feedback         = 0 (INTEGER)
 
    (0x03000000:NameValue):Priority         = 0 (INTEGER)
 
    (0x03000000:NameValue):Persistence      = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgId            = X'414d5120494239514d47523120202020b9642c5720009203' (BLOB)
 
    (0x03000000:NameValue):CorrelId         = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):BackoutCount     = 0 (INTEGER)
 
    (0x03000000:NameValue):ReplyToQ         = '                                                ' (CHARACTER)
 
    (0x03000000:NameValue):ReplyToQMgr      = 'IB9QMGR1                                        ' (CHARACTER)
 
    (0x03000000:NameValue):UserIdentifier   = 'miracle     ' (CHARACTER)
 
    (0x03000000:NameValue):AccountingToken  = X'160105150000006c5b8165143a0cb6175e669ce803000000000000000000000b' (BLOB)
 
    (0x03000000:NameValue):ApplIdentityData = '                                ' (CHARACTER)
 
    (0x03000000:NameValue):PutApplType      = 11 (INTEGER)
 
    (0x03000000:NameValue):PutApplName      = '\miracle\Desktop\rfhutil.exe' (CHARACTER)
 
    (0x03000000:NameValue):PutDate          = DATE '2016-05-06' (DATE)
 
    (0x03000000:NameValue):PutTime          = GMTTIME '11:06:32.120' (GMTTIME)
 
    (0x03000000:NameValue):ApplOriginData   = '    ' (CHARACTER)
 
    (0x03000000:NameValue):GroupId          = X'000000000000000000000000000000000000000000000000' (BLOB)
 
    (0x03000000:NameValue):MsgSeqNumber     = 1 (INTEGER)
 
    (0x03000000:NameValue):Offset           = 0 (INTEGER)
 
    (0x03000000:NameValue):MsgFlags         = 0 (INTEGER)
 
    (0x03000000:NameValue):OriginalLength   = -1 (INTEGER)
 
  )
 
  (0x01000000:Name):XMLNSC     = (
 
    (0x01000000:Name):TAX-RECORD = (
 
      (0x03000000:NameValue):BATCH-ID     = '20141120143649' (CHARACTER)
 
      (0x01000000:Name     ):ITEM-DETAILS = (
 
        (0x03000000:NameValue):xmlns                                    = 'http://www.ibm.com/xmlnsc/item' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:TAX-FLOW   = 'OLD' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:CNTRY-CODE = 'US' (CHARACTER)
 
        (0x03000000:NameValue)http://www.ibm.com/xmlnsc/item:ITEM-NBR   = '0000000001' (CHARACTER)
 
      )
 
    )
 
  )
 
)
 
 | 
   
 
 _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | joebuckeye | 
		  
		    
			  
				 Posted: Fri May 06, 2016 6:59 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		    Partisan
 
 Joined: 24 Aug 2007 Posts: 365 Location: Columbus, OH 
  | 
		  
		    
			  
				| So what have you tried and what were the results? | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mqjeff | 
		  
		    
			  
				 Posted: Fri May 06, 2016 7:15 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Grand Master
 
 Joined: 25 Jun 2008 Posts: 17447
  
  | 
		  
		    
			  
				
   
	| joebuckeye wrote: | 
   
  
	| So what have you tried and what were the results? | 
   
 
 
 
   
 
 
 
   
	| mqjeff wrote: | 
   
  
	There's a difference between removing the namespace on an element and removing a namespace declaration.
 
 
One is a property of an element, the other is an XML attribute.
 
 
Again, if you wish to remove a namespace from an element and all of it's children, you need to explicitly remove it from all of it's children.
 
 
If you remove the namespace declaration without removing the namespace, or without setting a declaration lower in the tree - you will find that XML parsers are not happy with you. | 
   
 
 
 
Look at the trace output of your ITEM-DETAILS record.
 
 
Look at the fields and properties it has.  Look at the fields and properties of it's children. _________________ chmod  -R ugo-wx / | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | mahesh2069 | 
		  
		    
			  
				 Posted: Thu May 12, 2016 9:42 am    Post subject:  | 
				     | 
			   
			 
		   | 
		 
		
		   Centurion
 
 Joined: 26 Jun 2013 Posts: 103
  
  | 
		  
		    
			  
				Hi mqjeff,
 
I have set "ITEM-DETAILS" element's namespace  to empty string.Still we did not get proper results.
 
Could you please help us. _________________ Thanks & Regards
 
Mahesh Mediboyina
 
WMB Developer | 
			   
			 
		   | 
		 
		
		  | Back to top | 
		  
		  	
		   | 
		 
		
		    | 
		 
		
		  | 
		    
		   | 
		 
	   
	 | 
   
 
  
	     | 
	Goto page 1, 2  Next | 
	Page 1 of 2 | 
   
 
 
 
  
  	
	  
		
		  
 
  | 
		  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
  | 
  		 
	   
	 | 
   
 
  	 | 
	  |