05-07-2007 12:13 PM - edited 03-14-2019 12:50 AM
Hello,
does anybody have a sample for creating a java remote Object?
with kind regards
i.A. Martin
05-11-2007 12:29 PM
Check out Cisco Developer Support ( http://cisco.com/en/US/products/svcs/ps3034/ps5408/ps5418/serv_home.html) for assistance with custom scripts.
05-11-2007 03:44 PM
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;
}
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