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 » Search

 Search found 27 matches
Author Message
  Topic: Accessing Custom Variables in LocalEnviroment from Maps
dmx0t1

Replies: 9
Views: 5648

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Mar 26, 2009 2:08 am   Subject: Accessing Custom Variables in LocalEnviroment from Maps
The previous post assumes that the data held in the LocalEnvironment.Variables structure has been defined as part of a message definition. If this is the case then it works as suggested.
If you have ...
  Topic: Accessing Custom Variables in LocalEnviroment from Maps
dmx0t1

Replies: 9
Views: 5648

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Mar 26, 2009 1:59 am   Subject: Accessing Custom Variables in LocalEnviroment from Maps
The data you want to store under the LocalEnvironment tree is it part of Input tree? if yes, you can do it. Drag the wildcard element under Variables subtree and place it on the complex element (whose ...
  Topic: Accessing Custom Variables in LocalEnviroment from Maps
dmx0t1

Replies: 9
Views: 5648

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Mar 19, 2009 6:01 pm   Subject: Accessing Custom Variables in LocalEnviroment from Maps
Yea, I understand that I can not add the Environment tree in the map editor, perhaps I should take some of the listed objects in LocalEnvironment tree and store my custom data? Would this cause any si ...
  Topic: Accessing Custom Variables in LocalEnviroment from Maps
dmx0t1

Replies: 9
Views: 5648

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Mar 19, 2009 2:38 am   Subject: Accessing Custom Variables in LocalEnviroment from Maps
looks like theres no luck in this...
  Topic: Accessing Custom Variables in LocalEnviroment from Maps
dmx0t1

Replies: 9
Views: 5648

PostForum: WebSphere Message Broker (ACE) Support   Posted: Tue Mar 17, 2009 1:43 am   Subject: Accessing Custom Variables in LocalEnviroment from Maps
Hi All,

I have a message map that needs to be mapped to predefined parsed data not currently stored in the input message tree, is it possible that I can store these data in the Environment or Local ...
  Topic: Problem Setting EBCDIC Encoded Text to CDATA Section
dmx0t1

Replies: 9
Views: 9113

PostForum: WebSphere Message Broker (ACE) Support   Posted: Wed Feb 11, 2009 7:28 pm   Subject: Problem Setting EBCDIC Encoded Text to CDATA Section
Again to make sure you get everything right regardless you need to either

pass it as a hex representation of the byte


Thanx for the tip, fjb_saper I've opted option 2
  Topic: Problem Setting EBCDIC Encoded Text to CDATA Section
dmx0t1

Replies: 9
Views: 9113

PostForum: WebSphere Message Broker (ACE) Support   Posted: Wed Feb 11, 2009 7:24 pm   Subject: Re: Problem Setting EBCDIC Encoded Text to CDATA Section
Works fine? X'0A' should not look like a question mark.
Well, I am not so sure, but at least I didn't get any exception when the control character is X'0A'


X'0A', X'00', and X'2E ...
  Topic: Problem Setting EBCDIC Encoded Text to CDATA Section
dmx0t1

Replies: 9
Views: 9113

PostForum: WebSphere Message Broker (ACE) Support   Posted: Wed Feb 11, 2009 6:45 pm   Subject: Problem Setting EBCDIC Encoded Text to CDATA Section
Why are you sending the hex encoded text in CCSID 937 when your output in CCSID 1208?
Because I need to log all messages in/out the mainframe, and my logging application is written in Java and expect ...
  Topic: Problem Setting EBCDIC Encoded Text to CDATA Section
dmx0t1

Replies: 9
Views: 9113

PostForum: WebSphere Message Broker (ACE) Support   Posted: Wed Feb 11, 2009 6:19 pm   Subject: Problem Setting EBCDIC Encoded Text to CDATA Section
Message broker obviously thinks that your second BLOB is not a valid stream of characters in code page 937. If you disagree, please explain why.

Well, I was able to serialize the MRM tree via the A ...
  Topic: Problem Setting EBCDIC Encoded Text to CDATA Section
dmx0t1

Replies: 9
Views: 9113

PostForum: WebSphere Message Broker (ACE) Support   Posted: Tue Feb 10, 2009 8:53 am   Subject: Problem Setting EBCDIC Encoded Text to CDATA Section
Hi,

I have a scenario where I am required to put EBCDIC encoded text in the CDATA section under the xml message tree. I have the following code in my compute node:

DECLARE ebcdicHex BLOB X'C9 ...
  Topic: Parsing CDATA into XMLNSC
dmx0t1

Replies: 9
Views: 14031

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Jan 08, 2009 8:01 am   Subject: Parsing CDATA into XMLNSC
Just noticed something else that you should be aware of.
XMLNSC does not use the TYPE and FORMAT parameters. Those are for MRM only. So don't expect the settings in the XML1 physical format to have a ...
  Topic: Parsing CDATA into XMLNSC
dmx0t1

Replies: 9
Views: 14031

PostForum: WebSphere Message Broker (ACE) Support   Posted: Thu Jan 08, 2009 3:00 am   Subject: Parsing CDATA into XMLNSC
It seems there's some line encoding problem w/ my input test message, after I made all messages in the CData section into one single line, everything turned out all right...thanx a lot for the help gu ...
  Topic: Parsing CDATA into XMLNSC
dmx0t1

Replies: 9
Views: 14031

PostForum: WebSphere Message Broker (ACE) Support   Posted: Tue Jan 06, 2009 3:19 am   Subject: Parsing CDATA into XMLNSC
You have made two mistakes:
- When you convert CHARACTER to BLOB you should always specify the code page of the source characters.
- You have ignored my advice about using code page 1200 instead of ...
  Topic: Parsing CDATA into XMLNSC
dmx0t1

Replies: 9
Views: 14031

PostForum: WebSphere Message Broker (ACE) Support   Posted: Mon Jan 05, 2009 7:08 am   Subject: Parsing CDATA into XMLNSC
mqjeff said:You do not need to use ASBITSTREAM on the CDataSection.Correct. And you do need to CAST the contents of the CData section to a BLOB before calling CREATE...PARSE. Remember that all charact ...
  Topic: Parsing CDATA into XMLNSC
dmx0t1

Replies: 9
Views: 14031

PostForum: WebSphere Message Broker (ACE) Support   Posted: Mon Jan 05, 2009 2:25 am   Subject: Parsing CDATA into XMLNSC
Hi there,

Suppose I have a well-formed xml message wrapped within another well-formed XML message as CDataField, how can I parse the CDataField into the XMLNSC message domain?

With the followi ...
Goto page 1, 2  Next Page 1 of 2

Jump to:  
Protected by Anti-Spam ACP
 
 


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

Copyright © MQSeries.net. All rights reserved.