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

Sample for "Create Java Remote Object"?

joerg.loeschmann
Community Member

Hello,

does anybody have a sample for creating a java remote Object?

with kind regards

i.A. Martin

2 Replies 2

drolemc
Level 11
Level 11

Check out Cisco Developer Support ( http://cisco.com/en/US/products/svcs/ps3034/ps5408/ps5418/serv_home.html) for assistance with custom scripts.

davidwomer
Level 2
Level 2

If you are trying to write Java code within your script its easy to use the expression editor.

For Example say you have an int value named myValue in your script

You can use the set from the script editor and within the expression editor write some code.

IE to set myValue to 50 * 10:

{

int multiple = 10;

int value = 50;

return multiple * value;

}