[转帖]Tuxedo gateway 错误: 402006_MQ, Tuxedo及OLTP讨论区_Weblogic技术|Tuxedo技术|中间件技术|Oracle论坛|JAVA论坛|Linux/Unix技术|hadoop论坛_联动北方技术论坛  
网站首页 | 关于我们 | 服务中心 | 经验交流 | 公司荣誉 | 成功案例 | 合作伙伴 | 联系我们 |
联动北方-国内领先的云技术服务提供商
»  游客             当前位置:  论坛首页 »  自由讨论区 »  MQ, Tuxedo及OLTP讨论区 »
总帖数
2
每页帖数
101/1页1
返回列表
0
发起投票  发起投票 发新帖子
查看: 5228 | 回复: 1   主题: [转帖]Tuxedo gateway 错误: 402006        下一篇 
jxxs_12
注册用户
等级:下士
经验:190
发帖:14
精华:0
注册:2013-1-15
状态:离线
发送短消息息给jxxs_12 加好友    发送短消息息给jxxs_12 发消息
发表于: IP:您无权察看 2014-9-26 16:25:46 | [全部帖] [楼主帖] 楼主

Hi,

I am getting below error when tried to call a service from a remote domain. If I try for other services of the remote domain, it works fine. Only for this one service, it is throwing below error.

    ERROR: msgsnd err北京联动北方科技有限公司LIBTUX_CAT:669: ERROR: Message operation failed because of the invalid message queue identifier)errno=22,qid=3003151,buf=1075999312,bytes=297,flag=2048

 LIBGW_CAT:1030: ERROR: Reply message not sent due to gateway error 402006

Is there anything that needs to be changed in the code or its an issue with patch that we are working on ?

Current Platform :

OS - HP-UX B.11.23 U 9000/800

tuxedo - BEA Tuxedo, Version 9.1, 32-bit, Patch Level 147




赞(0)    操作        顶端 
koei
版主
等级:大校
经验:4180
发帖:7
精华:0
注册:2011-7-21
状态:离线
发送短消息息给koei 加好友    发送短消息息给koei 发消息
发表于: IP:您无权察看 2014-9-26 21:03:47 | [全部帖] [楼主帖] 2  楼

这个错误提示其实不太友好,这里把Tuxedo源代码贴出来,关于网关的错误号的

/*    Copyright 1996 BEA Systems, Inc.    */

/*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */

/*    BEA Systems, Inc.                         */

/*    The copyright notice above does not evidence any       */

/*    actual or intended publication of such source code.    */

/*    Copyright (c) 1996 BEA System, Inc.

Portions of this software 1995 Novell, Inc.

All rights reserved

THIS IS UNPUBLISHED PROPRIETARY

SOURCE CODE OF BEA System, Inc.

The copyright notice above does not

evidence any actual or intended

publication of such source code.

*/

#ifndef GWERROR_H

#define GWERROR_H

/* #ident       "@(#)domain:gw/include/gwerror.h    1.2 6.5 RPatch Derived From $Revision: 1.1.4.2 $" */

#ifndef TMMACH_H

#include <tmmach.h>

#endif

#ifndef NOWHAT

static char h_gwerror[] = "@(#)domain:gw/include/gwerror.h    1.2 6.5 RPatch Derived From $Revision: 1.1.4.2 $";

#endif

/**** Errors must have the following structure:

<level><severity><error number>

digits:   00       0      000

Level is the component

Severity: 1 The gateway exits

2 Serious error sent to userlog

3 Warning (it may also be sent to userlog)

Errors: error numbers are sequentially assigned and unique

within each level

*****/

/* GENERIC GW: Level 20 */

#define GWE20_ADV              202040

#define GWE20_ENTER           202041

#define GWE20_INVALIDACT    202042

#define GWE20_MAXACTREACHED 202043

#define GWE20_NOMEMORY      202044

/*

*

* Shared memory interface errors

*

*/

#define GWEINVAL    8001

#define GWEEXIST    8002

#define GWENOMEM     8003

#define GWESHMGET     8004

#define GWESHMCTL     8005

#define GWESHMAT     8006

#define GWESHMDT     8007

#define GWEADDPROC    8008

/*    Configuration errors: level 30 */

#define GWEGETRES    3001

#define GWENOLDOM    3002

#define GWENOMEMLD    3003

#define GWENOMEMLSVC    3004

#define GWENOMEMRDOM    3005

#define GWENOMEMRSVC    3006

#define GWEOPENLSVC    3007

#define GWEOPENRDOM    3008

#define GWEOPENRSVC    3009

#define GWEBDMCONFIG    3010

#define GWENOMEMTDOM    3011

#define GWENOMEMOSITP    3012

#define GWEOPENTDOM    3013

#define GWEOPENOSITP    3014

#define GWEOPENACL    3015

#define GWEOPENROUT    3016

#define GWETUXCONFIG    3020

#define GWEOPENSNADOM   3021

#define GWENOMEMSNADOM  3022

/* MSG-CM: Level 40 */

#define GWE40_BUFTYP    402001

#define GWE40_DECHDR    402002

#define GWE40_DECMSG    402003

#define GWE40_FILE2MSG    402004

#define GWE40_INVRSVC    402005

#define GWE40_MSGSEND    402006

#define GWE40_NOENTRY    402007

#define GWE40_NOMSG    402008

#define GWE40_OPCODE    402009

#define GWE40_POSTRCV    402010

#define GWE40_SPACE    402011

#define GWE40_STALEMSG    403012

#define GWE40_SYSBUF    402013

#define GWE40_TMALARM    403014

#define GWE40_ENTER    402015

#define GWE40_NOSERVICE    402016

#define GWE40_SVCFAIL    402017

#define GWE40_NOCONTEXT    402018

#define GWE40_MAXRETRY        402019

#define GWE40_STALEHDL    402020          /* CR012087 */

#define GWE40_MAXTRAN    402021

/* TRANSACTIONS: Level 60 */

#define GWE60_SHM       602001

#define GWE60_INIT      602002

#define GWE60_ENTER     602003

/* add errors always before the endif */

#endif



赞(0)    操作        顶端 
总帖数
2
每页帖数
101/1页1
返回列表
发新帖子
请输入验证码: 点击刷新验证码
您需要登录后才可以回帖 登录 | 注册
技术讨论