11-15-2011 11:37 PM - edited 03-14-2019 08:54 AM
I have to create a ticket on a db for that, I need to launch a file CreateTicketIVR.jar with input parameters Par1, Par2, Par5 ... and I will return an integer NrTicket. How can I run this file from expression editor? Where can I find more documentation / examples?
Thanks,
GL
11-16-2011 12:47 AM
Hi Giovanna,
I understand that the jar package is a runnable one. That's fine if you run it using the command line, but you need a little more information if you want to incorporate it into your UCCX scripts. What you need is to find the main class name.
It's usually easy to find that: just unzip that jar package, and look for a file named manifest.txt or MANIFEST.MF. It'll contain a row starting with the word Main-Class: and then the name of the main class. Write that down.
What you can do then is just following the guides, so upload the jar file into the documents folder. If that's successful, you can reference it by calling the main class (including parameters) using a Set step:
myIntegerVariable = {
some.package.some.SuperAwesomeJavaClass Par1, Par2, Par3, Par4, Par5;
}
Hope this helps.
G.
12-05-2011 01:22 AM
hi,
you suggest me this configuration
but i can't apply this because i receive an error
Why?
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide