ActiveVOS Designer User’s Guide
After you deploy one or more process request forms and task forms, you can test and debug your Javascript by using a browser Javascript Debugger and enabling debugging in ActiveVOS Central. You can also use the JSON Converter utility.
To debug your Javascript in HTML forms, do the following:
http://localhost:8080/activevos-central/avc/avc.jsp?debug=true
Access the converter at:
http://localhost:8080/active-bpel/jsonConverter.html
When you make changes in your form and redeploy it, you can select Reset Form in ActiveVOS Central to view the updated form.
With debug enabled, it is easier to debug jQuery functions. They get expanded into readable lines of code instead of the one long line of code that typically shows in a debug console.
For task forms, you can also use Development Mode for testing layouts without redeploying the form.
Tips for testing forms:
$ID suffix,
such as processRequestForm$ID. The $ID suffix provides a unique
HTML element ID to avoid collisions with other forms.
Incorrect: getText(parametersTaskInputPart.NewOperation.in) where in is an input message for NewOperation.
Correction: getText(parametersTaskInputPart.NewOperation["in"])
Copyright (c) 2004-2010 Active Endpoints, Inc.