Author |
Message |
Topic: FileOutput Node Design question |
khudania
Replies: 5 Views: 2446
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 23, 2011 7:29 am Subject: Re: FileOutput Node Design question |
How long will it take for FileOutput Node to transfer 30 GB?
At one GB per second, it will take thirty seconds.
No, it will take a little more than 30 seconds. Transfering is one part, overhead ... |
Topic: Single WSDL for multiple Webservice Message Flows |
khudania
Replies: 12 Views: 8888
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jun 15, 2011 12:41 am Subject: Re: Single WSDL for multiple Webservice Message Flows |
From what I have understood from your question, the answer is quite simple. Use as many port types as you like in one wsdl and make a flow for each of the port types.
portType, which is a set of ... |
Topic: Single WSDL for multiple Webservice Message Flows |
khudania
Replies: 12 Views: 8888
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 14, 2011 7:42 am Subject: Re: Single WSDL for multiple Webservice Message Flows |
Hi,
We have a scenario where there are similar type of web service request needs to be integrated from ASP.net to WBI to IMS. We have created one webservice message flow each for one IMS transactio ... |
Topic: DB Lock in ESQL WMB |
khudania
Replies: 15 Views: 23704
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 06, 2011 4:01 am Subject: DB Lock in ESQL WMB |
I jst tried with contact admin setting was commit.
and i tried processing the transactions all are getting failed.
Failed ? you mean nothing is updated or there is some error ? Broker 1 or Broker 2 ... |
Topic: DB Lock in ESQL WMB |
khudania
Replies: 15 Views: 23704
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 06, 2011 2:08 am Subject: DB Lock in ESQL WMB |
Actully my code have insert and select SQLstmts and these stmts are executed by using PASSTHRU functions.
As you said limiting the size my SELECT Query fetching One row based on some trnid.
Ma ... |
Topic: DB Lock in ESQL WMB |
khudania
Replies: 15 Views: 23704
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 06, 2011 1:48 am Subject: DB Lock in ESQL WMB |
When the locking is due to Automatic Transaction setting where lock is released only after the flow is completed and a different connection is already waiting.
Infocenter says following for this ty ... |
Topic: DB Lock in ESQL WMB |
khudania
Replies: 15 Views: 23704
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 06, 2011 12:57 am Subject: DB Lock in ESQL WMB |
Are you using the same Datasource for both the brokers ?
If you define more than one ODBC connection to the same data source, you might get database locking problems. |
Topic: Using Database and Schema name in PASSTHRU Statement |
khudania
Replies: 12 Views: 10813
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 5:08 am Subject: Using Database and Schema name in PASSTHRU Statement |
Did you try this.
SET Environment.Variables.DUMSHDatabase[]= PASSTHRU(DUMSHDQuery TO Database.DSN2 );
Here DSN2 is the Other Datasource. |
Topic: Using Database and Schema name in PASSTHRU Statement |
khudania
Replies: 12 Views: 10813
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 4:05 am Subject: Using Database and Schema name in PASSTHRU Statement |
We are trying to connect to two databases from one compute node.
We have already set one Data Source in the properties of that compute node. So in order to access the second database we need to follo ... |
Topic: Using Database and Schema name in PASSTHRU Statement |
khudania
Replies: 12 Views: 10813
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 3:41 am Subject: Using Database and Schema name in PASSTHRU Statement |
Apologies!!! It was Typo. It is "dbn1.sn1.tbl1".
I dont think its a typo, your code is doing the same...
SET DUMSHDQuery = 'SELECT DISTINCT col1,col2 FROM ' || SchemaName|| '.' || ... |
Topic: Using Database and Schema name in PASSTHRU Statement |
khudania
Replies: 12 Views: 10813
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 3:06 am Subject: Using Database and Schema name in PASSTHRU Statement |
sn1.dbn1.tbl1
Dont you think it should have been
dbn1.sn1.tbl1
or
sn1.tbl1
I mean, how come db name preceded by schema, it should hv been opposite instead. |
Topic: No of instances problem |
khudania
Replies: 10 Views: 4670
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 2:09 am Subject: No of instances problem |
It seems most likely that the problem is in your javacompute node.
In general, different instances of a message flow do not contend with each other unless you have taken specific steps to make them ... |
Topic: Sorting and Removing Duplicates |
khudania
Replies: 20 Views: 23783
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 05, 2011 1:14 am Subject: Sorting and Removing Duplicates |
See the example by Fou-Lu, this is exactly what you have described.
http://www.codingforums.com/archive/index.php/t-43014.html |
Topic: Sorting and Removing Duplicates |
khudania
Replies: 20 Views: 23783
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 04, 2011 7:48 am Subject: Sorting and Removing Duplicates |
Siva, please if you could provide a sample of the message with some values and expected expected output. |
Topic: Sorting and Removing Duplicates |
khudania
Replies: 20 Views: 23783
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 04, 2011 7:33 am Subject: Sorting and Removing Duplicates |
From what I understand, Siva wants to sort the data(some list) and not the entire message tree and if my understanding is right, this is how the values can be sorted in java.
Siva, for filtering du ... |