ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » IBM MQ Java / JMS » MQ8001 channel trouble with CCDT probeid RM680047

Post new topic  Reply to topic
 MQ8001 channel trouble with CCDT probeid RM680047 « View previous topic :: View next topic » 
Author Message
fjb_saper
PostPosted: Sat Feb 21, 2015 10:24 am    Post subject: MQ8001 channel trouble with CCDT probeid RM680047 Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20696
Location: LI,NY

Has anyone encountered probeid RM680047 with channel protocol error?
Works fine when passing all the channel and host parms to the connection factory, but when passing the ccdturl I get the following...
Did I miss something? (ccdt def at end of post)...

Noticed the UTC time offset in the FDC. Shouldn't that have been -0500 ??
Local Time was correct though...

Did not find any info on the IBM site with the probeid...

Code:
----- amqrmrsa.c : 930 --------------------------------------------------------
2/21/2015 12:46:03 - Process(1904.3) User(MUSR_MQADMIN) Program(amqrmppa.exe)
                      Host(FJS-HP) Installation(mq8)
                      VRMF(8.0.0.1) QMgr(TES)
                     
AMQ9504: A protocol error was detected for channel 'FJ'.

EXPLANATION:
During communications with the remote queue manager, the channel program
detected a protocol error. The failure type was 11 with associated data of 0.
ACTION:
Contact the systems administrator who should examine the error logs to
determine the cause of the failure.

and
Code:
+-----------------------------------------------------------------------------+
|                                                                             |
| WebSphere MQ First Failure Symptom Report                                   |
| =========================================                                   |
|                                                                             |
| Date/Time         :- Sat February 21 2015 12:46:03 Eastern Standard Time    |
| UTC Time          :- 1424540763.344000                                      |
| UTC Time Offset   :- -300 (Eastern Standard Time)                           |
| Host Name         :- FJS-HP                                                 |
| Operating System  :- Windows Ver 6.2 (5) Unknown x64 Edition, Build 9200    |
| PIDS              :- 5724H7251                                              |
| LVLS              :- 8.0.0.1                                                |
| Product Long Name :- WebSphere MQ for Windows (x64 platform)                |
| Vendor            :- IBM                                                    |
| O/S Registered    :- 1                                                      |
| Data Path         :- C:\MQ\Data                                             |
| Installation Path :- C:\mq\mq8                                              |
| Installation Name :- mq8              (1)                                   |
| License Type      :- Developer                                              |
| Probe Id          :- RM680047                                               |
| Application Name  :- MQM                                                    |
| Component         :- rriBadDataReceived                                     |
| SCCS Info         :-                                                        |
|   ...ot1\p800_P\src\com.ibm.mq.common\base\src\cmqxrfpt.c,                  |
| Line Number       :- 2359                                                   |
| Build Date        :- Sep 19 2014                                            |
| Build Level       :- p800-001-140919                                        |
| Build Type        :- IKAP - (Production)                                    |
| UserID            :- MUSR_MQADMIN                                           |
| Process Name      :- C:\mq\mq8\bin64\amqrmppa.exe                           |
| Addressing mode   :- 64-bit                                                 |
| Process           :- 00001904                                               |
| Thread            :- 00000003    RemoteResponder                            |
| Session           :- 00000000                                               |
| QueueManager      :- TES                                                    |
| UserApp           :- FALSE                                                  |
| ConnId(1) IPCC    :- 103                                                    |
| ConnId(3) QM-P    :- 34                                                     |
| Last HQC          :- 4.0.0-23296                                            |
| Last HSHMEMB      :- 1.6.6-128704                                           |
| Last ObjectName   :-                                                        |
| Major Errorcode   :- rrcE_PROTOCOL_ERROR                                    |
| Minor Errorcode   :- OK                                                     |
| Probe Type        :- MSGAMQ9504                                             |
| Probe Severity    :- 2                                                      |
| Probe Description :- AMQ9504: A protocol error was detected for channel     |
|   'FJ'.                                                                     |
| FDCSequenceNumber :- 0                                                      |
| Arith1            :- 4 4                                                    |
| Arith2            :- 19 13                                                  |
| Comment1          :- FJ                                                     |
|                                                                             |
+-----------------------------------------------------------------------------+

Trying to use a channel table with JMS. And I did use the IBM MQ provided JVM...
Code:
     1 : dis chl(fj) all
AMQ8414: Display Channel details.
   CHANNEL(FJ)                             CHLTYPE(CLNTCONN)
   AFFINITY(PREFERRED)                     ALTDATE(2015-02-21)
   ALTTIME(12.53.19)                       CERTLABL( )
   CLNTWGHT(0)                             COMPHDR(NONE)
   COMPMSG(NONE)                           CONNAME(localhost(1414))
   DEFRECON(NO)                            DESCR( )
   HBINT(300)                              KAINT(AUTO)
   LOCLADDR( )                             MAXMSGL(4194304)
   MODENAME( )                             PASSWORD( )
   QMNAME(TES)                             RCVDATA( )
   RCVEXIT( )                              SCYDATA( )
   SCYEXIT( )                              SENDDATA( )
   SENDEXIT( )                             SHARECNV(1)
   SSLCIPH( )                              SSLPEER( )
   TPNAME( )                               TRPTYPE(TCP)
   USERID( )

_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
mvic
PostPosted: Sat Feb 21, 2015 1:08 pm    Post subject: Re: MQ8001 channel trouble with CCDT probeid RM680047 Reply with quote

Jedi

Joined: 09 Mar 2004
Posts: 2080

The "UTC time offset" means local tz is 5 hours West of UTC, = -5 * 60 minutes = -300 minutes.

The FDC produced from (simple?) testing is almost certainly a sign of a bug either in the protocols being used by the client, or a mistake in validation on the server. Sounds like a PMR to me.
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Sat Feb 21, 2015 1:58 pm    Post subject: Re: MQ8001 channel trouble with CCDT probeid RM680047 Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20696
Location: LI,NY

mvic wrote:
The "UTC time offset" means local tz is 5 hours West of UTC, = -5 * 60 minutes = -300 minutes.

The FDC produced from (simple?) testing is almost certainly a sign of a bug either in the protocols being used by the client, or a mistake in validation on the server. Sounds like a PMR to me.

Aha... so the time offset is in mins not in the usual form hh:mm or hhmm...

PMR is what I thought but:

Code:
| License Type      :- Developer                                              |
does not allow you to open a PMR...
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » IBM MQ Java / JMS » MQ8001 channel trouble with CCDT probeid RM680047
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.