|
|
发表于 2005/3/29 20:50:48
|
显示全部楼层
是程序有問題的
Check a java file called MTree, in base folder as I remember.there's a function called getNodeDetails()
there're some statement to check if the language is base language and generate sql based on the languaged the user logged.
but the problem is the program use Env.getCtx() not
getCtx(). Env.getCtx() means the global context, but it will not cause problem the global context is same with your context, but it do cause problem if you use the web, b'cos the system store all the session's context in jboss.
so just change the Env.getCtx() to getCtx() |
|