PureEngage On-Premises

 View Only

Sign Up

  • 1.  How to use .jar file in Composer

    Posted 01-02-2017 10:43
    Hi,

    can any has use .JAR files in Genesys Composer Backend Block. If yes please share some code snippet. 

    Regards,
    Moiz 


  • 2.  RE: How to use .jar file in Composer

    Posted 01-23-2017 07:33
    Yes you can. I am using Composer 8.1.102.00.
    1) Add the JAr files in Project_Path\WEB-INF\lib
    2) Add the below line in the top of backeend code:
     <%@page import="Class_Needed_Into_Jar"%>
    3) Then you can call the class inside the JAR file :
    Class_Needed_Into_Jar.Function_Name(Parm1, Parm2, Parm3)


  • 3.  RE: How to use .jar file in Composer

    Posted 01-23-2017 07:37
    Can you please share sample code snippet for better understanding. Thanks in advance.