How to connect to a websphere Application Server 8.5 Message Queue while Administrative Security is enabled

后端 未结 1 560
梦谈多话
梦谈多话 2020-12-22 03:40

i have written a little client test programm running against a Websphere Applicationserver Message Topic. All works fine. Now, if i am turning on the admini

相关标签:
1条回答
  • 2020-12-22 04:19

    The exception you got indicates you did not set the ConfigURL for the client

    JSAS1480I: Security is not enabled because the ConfigURL property file is not set.

    Explanation   The com.ibm.CORBA.ConfigURL property specified in setupCmdLine.bat or on the java command line is not set.
    Action    To enable security, set the com.ibm.CORBA.ConfigURL property to a properties file which exists, such as the sas.client.props file.
    

    You are missing

    -Dcom.ibm.CORBA.ConfigURL=file:///home/user1/sas.client.props
    

    You can read the instructions on the Info Center: Running the IBM Thin Client for Enterprise JavaBeans (EJB)

    0 讨论(0)
提交回复
热议问题