cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2100
Views
0
Helpful
2
Replies

External libraries for custom elements

lukasz_zwada
Level 1
Level 1

Hi!

 

I'm developing custom CVP element that will hash input using SHA3. Because CVP 11 only supports java 7, I have to use external libraries for hashing in SHA3. In my case - bouncycastle.

How do I go about integrating my custom class with external library in CVP 11.6? I tried putting them both into vxmlserver\tomcat\lib but my custom element can't "reach" the bouncycastle library.

 

Regrads.

1 Accepted Solution

Accepted Solutions

Gerry O'Rourke
Spotlight
Spotlight

Put them in the Lib folder (jar files) or classes folder (Class files) in the java\util folder of your application.

 

e.g. C:\Cisco\CVP\VXMLServer\applications\my-application\java\util\lib\

 

Gerry

View solution in original post

2 Replies 2

Gerry O'Rourke
Spotlight
Spotlight

Put them in the Lib folder (jar files) or classes folder (Class files) in the java\util folder of your application.

 

e.g. C:\Cisco\CVP\VXMLServer\applications\my-application\java\util\lib\

 

Gerry

Uh.. java/util/lib. I kept placing it in wrong folder.

Thank you.