Author |
Message |
Topic: Importing a message flow. |
sweety176
Replies: 3 Views: 2904
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 10, 2005 10:27 am Subject: Importing a message flow. |
I am not importing it to a different machine. I want to duplicate it on the same broker on the same machine in the same version.I want to do all the testing on the new flow so i dont have to interrupt ... |
Topic: Importing a message flow. |
sweety176
Replies: 3 Views: 2904
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 10, 2005 6:20 am Subject: Importing a message flow. |
Hi
I am using MQSI2.1. I have a message flow in MRM domain. I want to create a duplicate flow for testing purposes. Can I do that without having to get the message sets then map them. Can I do sth l ... |
Topic: Doesnt recognize Attribute |
sweety176
Replies: 5 Views: 4017
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 15, 2005 5:39 am Subject: Doesnt recognize Attribute |
Yeah I am sorry I noticed that I didnt include XML.COntent in the code i posted here.
I had (XML.COntent after the XML.Attibute like
.....(XML.Attribute)LoanOriginationSystemLoanIdentifier.& ... |
Topic: Doesnt recognize Attribute |
sweety176
Replies: 5 Views: 4017
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 14, 2005 6:13 am Subject: solved |
Hi
The problem is not with my namespaces as they are correct.There wasnt any spelling mistake or any other thing.But it worked when i removed the .(XML.Content) part.
I simply wrote it as
SET Out ... |
Topic: Doesnt recognize Attribute |
sweety176
Replies: 5 Views: 4017
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Sep 13, 2005 6:24 am Subject: Doesnt recognize Attribute |
Hi
Following is my code
CREATE FIELD OutputRoot.XML."SOAP-Env:Envelope";
SET OutputRoot.XML."SOAP-Env:Envelope".(XML.Attribute)"xmlns:dqrs" = Input ... |
Topic: Urgent not creating fields |
sweety176
Replies: 2 Views: 2582
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Sep 11, 2005 6:31 am Subject: tried solving |
HI
I tried doing some error solving and I find that whatever i do before the line
CREATE FIELD OutputRoot.XML."SOAP-Env:Envelope"."SOAP-Env:Body"."dqrqfn:Docume ... |
Topic: Urgent not creating fields |
sweety176
Replies: 2 Views: 2582
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Sep 11, 2005 6:13 am Subject: Urgent not creating fields |
HI
I wrote the follwing code in my compute nodeDECLARE C INTEGER;
SET C = CARDINALITY(InputRoot.*[]);
DECLARE I INTEGER;
SET I = 1;
WHILE I < C DO
SET OutputRoot.*[I] ... |
Topic: Namespace constant xmlns has not been defined |
sweety176
Replies: 2 Views: 3079
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 09, 2005 11:16 am Subject: Namespace constant xmlns has not been defined |
Hi
try putting this way
.........."xmlns:xsi" =
I do not guarantee it will work in ur case but it worked for me.SO just give it a try.
Reagrds
Sweety |
Topic: Transformation fail |
sweety176
Replies: 8 Views: 5599
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 09, 2005 11:12 am Subject: SOlved |
Hi
I was able to solve the problem.My ESQL code is working now.
Thanks for all your help.
Regards
Sweety |
Topic: Transformation fail |
sweety176
Replies: 8 Views: 5599
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 08, 2005 8:17 am Subject: Transformation fail |
ESQL COde
DECLARE C INTEGER;
SET C = CARDINALITY(InputRoot.*[]);
DECLARE I INTEGER;
SET I = 1;
WHILE I < C DO
SET OutputRoot.*[I] = InputRoot.*[I];
SET I=I+ ... |
Topic: Transformation fail |
sweety176
Replies: 8 Views: 5599
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 08, 2005 7:45 am Subject: Transformation fail |
Hi JT
Thanks for your patience and willingness to help me,I really need it.
My input XML is
<?xml version = "1.0" encoding = "UTF-8"?>
<SOAP-Env:Envelope xmlns ... |
Topic: Transformation fail |
sweety176
Replies: 8 Views: 5599
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 07, 2005 6:00 pm Subject: Transformation fail |
Hi
I tried modifyinf the adapter. To test my code I used the same namespace both for input n output so i set the attributes and name spaces as it is.
I tried putting message at home.SO I copy-pasted ... |
Topic: Namespace question |
sweety176
Replies: 6 Views: 4301
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 07, 2005 12:26 pm Subject: Namespace question |
There is a peculiar problem here that it takes hrs for the message to get from i/p to o/p queue so I m not sure if it works yet.
The documentation I found was very confusing but this is what i could ... |
Topic: Namespace question |
sweety176
Replies: 6 Views: 4301
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 07, 2005 11:44 am Subject: Namespace question |
HI
I wrote the code as below
DECLARE Pointer REFERENCE TO OutputRoot.XML."SOAP-Env:Envelope";
CREATE FIRSTCHILD of Pointer TYPE 0x07000012 NAMESPACE 'xmlns' NAME 'dqrqfn' VALUE 'htt ... |
Topic: Namespace question |
sweety176
Replies: 6 Views: 4301
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 07, 2005 10:28 am Subject: worked before |
Hi
When its the same namespace both in input and output I am able to generate it without using XMLNS
But now since its dqrqfn on one side and dqrq on other it doesnt seem working.
Could you please ... |