Showing 6 results.
Items per Page 50
of 1

CVP Forum

« Back to General Discussion

Can we get VXML Server IP in session or call variables??

Combination View Flat View Tree View
Threads [ Previous | Next ]
 
 
Is their a way from where we can get the CVP VXML server IP in any kind of CVP variable or any call session variable in CVP (7.X ahead).
 
thanks in advance
 
Amit Ingole

 
 
Is their a way from where we can get the CVP VXML server IP in any kind of CVP variable or any call session variable in CVP (7.X ahead).
 
thanks in advance
 
Amit Ingole


Yes, you can. You need to use java code.  You can use something like:
 

InetAddress currentIP = InetAddress.getLocalHost();
to get this.
 
 
Hemal