Maximo

 View Only
  • 1.  Connect Maximo with external client program using MXThinClientSessionFactory

    Posted Mon May 16, 2022 11:22 AM

    Maximo setup details:

    MAXIMO system installed in websphere cluster and authentication is enabled with appserver authentication (LDAP).

    Our requirement:

    We are trying to open the MXSession from an external client (java program) using MXThinClientSessionFactory but we are unable to establish the connection successfully so we would like to understand if there is anything wrong with the program/JNDI properties.






    #Maximo
    #Support
    #AssetandFacilitiesManagement
    #SupportMigration


  • 2.  RE: Connect Maximo with external client program using MXThinClientSessionFactory

    Posted Mon May 16, 2022 11:30 AM

    MXThinClientSessionFactory f = new MXThinClientSessionFactory(env)

    MXSession.setMXSessionImplFactory(f)

    MXSession maximoSession = MXSession.getNewSession()

    maximoSession.setHost(mxServerURL)

    maximoSession.setUserName(mxUsername)

    maximoSession.setPassword(mxPassword)

    maximoSession.connect()






    #Maximo
    #SupportMigration
    #AssetandFacilitiesManagement
    #Support


  • 3.  RE: Connect Maximo with external client program using MXThinClientSessionFactory