Author |
Message |
Topic: question on reusable esql code |
vids
Replies: 2 Views: 2757
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Apr 12, 2005 3:22 pm Subject: question on reusable esql code |
I'm able to call this function from different projects by having project reference.
Vids |
Topic: question on reusable esql code |
vids
Replies: 2 Views: 2757
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Apr 12, 2005 1:31 pm Subject: question on reusable esql code |
Hi,
I'm using WBIMB 5.0.2. I have a messageFlowProject1 under which I have schema1 which has around 10 flows and associated esql files.
I need to call a particular function in all these 10 esql fi ... |
Topic: CURRENT_GMTTIMESTAMP format |
vids
Replies: 3 Views: 3881
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 11, 2005 9:36 am Subject: CURRENT_GMTTIMESTAMP format |
Thank you.
Vids |
Topic: CURRENT_GMTTIMESTAMP format |
vids
Replies: 3 Views: 3881
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Apr 08, 2005 4:00 pm Subject: CURRENT_GMTTIMESTAMP format |
Hi,
We are sending the timestamp to the output message in the format 1999-12-31T23:59:59.999Z.
In the compute node we get the CURRENT_GMTTIMESTAMP and format it as below...
DECLARE strGMTTime ... |
Topic: Namespace declaration help |
vids
Replies: 7 Views: 6392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2005 2:06 pm Subject: Namespace declaration help |
Chris,
I tried your code and it works fine. We don't even have to have the declare statement for namespace like
DECLARE Env NAMESPACE 'http://schemas.xmlsoap.org/soap/envelope/';
It's pretty s ... |
Topic: Namespace declaration help |
vids
Replies: 7 Views: 6392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2005 1:33 pm Subject: Namespace declaration help |
As Nizam said, It works fine even though there is a warning showing up. My message was going to the failure queue not because of the namespace issue. The above mentioned code works absolutely fine.
... |
Topic: Namespace declaration help |
vids
Replies: 7 Views: 6392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2005 11:53 am Subject: Namespace declaration help |
I don't think that is the problem because I have all the other codes which are using the namespace are written in the same way i.e {Env}: and they work absolutely fine.
I have problem declaring t ... |
Topic: Namespace declaration help |
vids
Replies: 7 Views: 6392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2005 11:27 am Subject: Namespace declaration help |
It's not working for me. Let me try it again.
Thanks
Vids |
Topic: Namespace declaration help |
vids
Replies: 7 Views: 6392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 29, 2005 10:55 am Subject: Namespace declaration help |
Hi,
I'm trying to construct the SOAP message in the compute node. I have a problem creating the envelope tag. Here is how I need the Envelope tag....
<SOAPENV:Envelope xmlns:SOAPENV="http://s ... |
Topic: Current timestamp in CST |
vids
Replies: 3 Views: 2880
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 24, 2005 10:53 am Subject: Current timestamp in CST |
Thank you |
Topic: Current timestamp in CST |
vids
Replies: 3 Views: 2880
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 23, 2005 2:23 pm Subject: Current timestamp in CST |
Hi all,
Can anyone tell me how to get the current timestamp in CST when the system is in PST. If I get the CURRENT_GMTTIMESTAMP and deduct the time difference between the CST and GMT, It may not w ... |
Topic: MQSI plugin node failure of 'java.lang.OutOfMemoryError' |
vids
Replies: 2 Views: 3641
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 28, 2004 4:33 pm Subject: MQSI plugin node failure of 'java.lang.OutOfMemoryError' |
mqsireportproperties <broker-name> -e <EG-name> -o ComIbmJVMManager -r -- this displays the current values
Increase the heap using the below command:
mqsichangeproperties <broker-n ... |
Topic: Restricted access to Broker Topology ? |
vids
Replies: 6 Views: 3581
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 28, 2004 4:24 pm Subject: Restricted access to Broker Topology ? |
You can change the userid under which the configuration manager service is running.
Go to the properties of "IBM MQSeries Broker ConfigMgr" in Services and change the userid and password under "Log ... |
Topic: Using clearMessage in java plugin node |
vids
Replies: 5 Views: 5448
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 27, 2004 10:09 am Subject: Using clearMessage in java plugin node |
Hi,
If the message object is not deleted using clearMessage() function, the objects will not be freed until
the Garbage Collector is called.
In order to test if clearMessage() is doing its j ... |
Topic: Using clearMessage in java plugin node |
vids
Replies: 5 Views: 5448
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 25, 2004 3:47 pm Subject: Using clearMessage in java plugin node |
Jeff,
I don't think there is a problem with the below code
MbMessage newMsg = new MbMessage(assembly.getMessage());
MbMessageAssembly newAssembly = new MbMessageAssembly(assembly, newMsg); ... |