Author |
Message |
Topic: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
juandelcid
Replies: 8 Views: 7590
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Feb 23, 2019 6:36 pm Subject: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
You are comparing the MQ Put time to CURRENT_TIMESTAMP...
Any particular reason you're not using CURRENT_GMTTIMESTAMP?
Please check if a call to CURRENT_GMTTIMESTAMP would provide the results you' ... |
Topic: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
juandelcid
Replies: 8 Views: 7590
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Feb 23, 2019 6:32 pm Subject: Re: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
Add something into your program that grabs the time from the OS, for comparison.
Eg. _ftime from https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/ftime-ftime32-ftime64?view=vs-2017
... |
Topic: User-defined nodes to be used inside subflows - how to? |
juandelcid
Replies: 2 Views: 2683
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Feb 23, 2019 12:20 pm Subject: Re: User-defined nodes to be used inside subflows - how to? |
How can I protect my features implementation from being edited without using User Defined Nodes?
I would write a static library (https://www.ibm.com/support/knowledgecenter/en/SSMKHH_10.0.0/com ... |
Topic: [Closed] ACE11 File Input node not processing file from NFS |
juandelcid
Replies: 11 Views: 8813
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Feb 23, 2019 12:05 pm Subject: [Closed] ACE11 File Input node not processing file from NFS |
ComIbmFileInputNode.getNextLocalFile, 'Trying to create a lockfile for file: ', '\\<host name>\<path>\<file name>'
2019-02-22 14:01:09.980007 8144 Co ... |
Topic: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
juandelcid
Replies: 8 Views: 7590
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Feb 23, 2019 11:49 am Subject: Re: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
As you can see, MQMD.PutTime is ahead by a little (0.05 seconds, on average).
Does anybody know how to fix this?
Your app makes two calls, one after the other, MQPUT and gettime, These calls will ... |
Topic: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
juandelcid
Replies: 8 Views: 7590
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 22, 2019 6:02 pm Subject: MQMD.PutTime is ahead of CURRENT_TIMESTAMP |
Hello, I'm trying to distinguish between these two instances (moments in time):
- When a message was put in a queue (MQMD.PutTime)
- The current timestamp (CURRENT_TIMESTAMP)
But, for some reas ... |