ESQL : XML.ProcessingInstruction

2004-05-10 Thread eai grp
I try to give an additional proocessing instruction but I get a space between the ? and the first char.Because of this it is not a valid XML! SET OutputRoot.XML.(XML.ProcessingInstruction) = '?qxml version="1.4"?'   The output is Notice that space between ? and qxml!!! What can I do?    

ESQL : CASE WHEN

2004-04-29 Thread eai grp
Can I not have multiple condition in a case like.. SET myVar = CASE UPPER(var)   WHEN 'AB' THEN '12'   WHEN 'CD' OR 'EF' OR 'GH' THEN '00'   END;   I tried SET myVar = CASE UPPER(var)   WHEN 'AB' THEN '12'   WHEN IN ('CD' , 'EF' , 'GH')  THEN '00'   END; Gives me an error !!

ESQL SELECT to fetch non-null tags

2004-04-27 Thread eai grp
I have an XML A B C I want to fill out an array with only the non null tags Book1 , Book2 and Book3. If Book2 is not present I want ARR[1] = A and ARR[2]=C How should my ESQL be? Do you Yahoo!?Win a $20,000 Career Makeover at Yahoo! HotJobs

Exception Handling in WMQI

2004-02-24 Thread eai grp
I was looking for some inputs on managing the errored out messages.Is it better to have an error queue per flow , or per business process or per application??And if I have a 'route to label' in a flow that brances it to two applications, if I set the transaction on the output queue for first branch

Req/Reply in a Clustered Setup

2004-01-17 Thread eai grp
My set up has two clusters , one is the Requester Cluster : Contains all applications qmgrs that send only requests Processor Cluster : Contains all applications qmgrs that process req and send reply. Broker qmgr is shared in both clusters. Now , on the requesting end should I use static or dynami

WSAD and WBI

2003-12-01 Thread eai grp
Any of you worked with WebSphere Application Developer (WSAD)integration edition, it read that it also has business integration tools. Are they something completely different from what we have in WBI? What are the tools that WSAD has for integration and how is it different from what we have in WBI

Overlapping Clusters

2003-08-14 Thread eai grp
Queries on overlapping clusters...If i have qmgrA and qmgrB part of clusterAB with both qmgrA and qmgrB being the repos for clusterABand qmgr1 and qmgr2 part of cluster12 with both qmgr1 and qmgr2 being the repos for cluster12. What do i need to do if i must make a qmgrB a bridge qmgr?If qmgrB is a

Re: Standard format Worksheet to capture MQ Objects Configuration

2003-07-29 Thread eai grp
Hello Jason , What i was looking for was more like a Worksheet to capture configuration information. I see something like that in MC67.Is there something like these for a complex setup? Jason Cornell <[EMAIL PROTECTED]> wrote: Try these:http://www-3.ibm.com/software/integration/support/supportpacs

Standard format doc to capture MQ Objects Design

2003-07-29 Thread eai grp
Hi , Is there a standard format for a document that is usually used or recommended by IBM to capture all configuration details of various Mq objects like the MQ objects like queue managers, cluster info ,queues processdef etc, especially for complex design and setup. May be something similar to the

Global Constants in MQSI

2003-07-22 Thread eai grp
how are constants stored within the message flow , such that they can be reused in other flows just like a interface constants in java.If i use the Environment.Variables and assign all that i need and save it as a sub flow and use the same in other flows.What about throughput , coz the tree will al

COBOL Copybooks equivalents with MQSI

2003-07-16 Thread eai grp
Hi All, We can use Cobol copy books to import cobol like message formats to the MRM.For RPG data structures do we have any such importers ?Do we have to create these structures manually in the MRM, what about the support for RPG data types? Thanks in advance Do you Yahoo!? SBC Yahoo! DSL - Now only

Re: Re : MQOPEN ended with reason code 2189, CLUSTERS

2003-07-16 Thread eai grp
no i dont c it on the other qmgr when i do a display qcluster.But u know the mq explorer , it shows the 'shared ' logo for that queue.I checked the log .. This is what my log says .. EXPLANATION:The queue manager has received information about a cluster for which norepositories are known.ACTION:Al

Re: Re : MQOPEN ended with reason code 2189, CLUSTERS

2003-07-16 Thread eai grp
no i dont c it on the other qmgr when i do a display qcluster.But u know the mq explorer , it shows the 'shared ' logo for that queue.I checked the log .. This is what my log says .. EXPLANATION:The queue manager has received information about a cluster for which norepositories are known.ACTION:Alt

Re: Re : MQOPEN ended with reason code 2189, CLUSTERS

2003-07-16 Thread eai grp
I tried after a while , I still ended up with the same error!Any other problem?Mqonnet <[EMAIL PROTECTED]> wrote: You usually get this because the non-repository queue manager did not getthe clustered queue information publicized from the repository qm where theclustered queue is hosted. This is no

MQOPEN ended with reason code 2189, CLUSTERS

2003-07-15 Thread eai grp
Hi I get a MQOPEN ended with reason code 2189 when i try to  amqsput on a queue that is shared in a cluster. I have just two QMGRs QM1 and QM2 in the cluster and iam doing a amqsput test QM2. QM2 does not have test and test is in QM1  and is shared. QM1 is the repos. Display clusqgr qmtype status,

Re: AS/400 RPG pgms cannot handle msg > 32k?

2003-07-09 Thread eai grp
yes , like Joerg understood , I was refering to the RPG limitation.I understand that MQ can handle upto 100MB data. Will programming get too complex , if we used the Pointer stuff?What about MQ Series Segmenting?  "David C. Partridge" <[EMAIL PROTECTED]> wrote: My copy of the iSeries APG for ILE

AS/400 RPG pgms cannot handle msg > 32k?

2003-07-09 Thread eai grp
Hi All,   What are my options if i need to put a message greater than 32K into queue using MQ API for RPG? I see that there is a limitation on the 'buffer' parameter declared to put/get messages. Is 'nt there applications handling such large messages, MQ limit of 100MB will never be used to its be

Re: Any of you , WMQI folks checked out Crossworlds?IBM's thought???

2003-07-03 Thread eai grp
tools. Like a hammer..one day it hits a nail in, anotherday it breaks a window cause your locked out and another day you can use itto smash you neighbors head in because you caught him fooling around withyou wife. You bend and use it for want you want.bobbee>From: eai grp <[EMAIL PROTECTED]&

Any of you , WMQI folks checked out Crossworlds?

2003-07-02 Thread eai grp
Hi All, Iam looking for a best fit product for an integration which is more like multiple branches sending information to a central processing applications.All branches run the same software package , different instances at each location ,though. And they are MQ Enabled.No process automation requir

Grouping and WMQI

2003-06-24 Thread eai grp
  What does the broker provide for processing messages in groups? Say I have an application that puts messages that are grouped.(MQSeries Message Groups). Is there an option to process such messages as one single group? That was about get and now for a put can 'propagate' be used to put messages in

Content Based Routing in WMQI

2003-06-05 Thread eai grp
Hi All, Here is a req where each message has to be routed to specific destination based on the content of data.But each msg is intended for only destination i.e I donot need multiple copies of any msg.One approach I can think of is using the destinationlistand the other to use publish subscribe.Pls

Re: Monitor a file and put to Q

2003-05-30 Thread eai grp
oh I wish we could ask them to do that, but why would the applications even want to adapt.   So from what you all suggest , there is nothing already available and we should write one. Tim Armstrong <[EMAIL PROTECTED]> wrote: Can you modify the application to generate the MQ message at the time itwr

Monitor a file and put to Q

2003-05-30 Thread eai grp
Hi All, I have a requirement , where in an application writes to an AS/400 file and I need a tool/software?adapter that monitors this file and writes this modified line into an MQSeries Queue.Is there something already available or If I should write one, pls gimme a few tips if I need to Poll or t