Friday, March 26, 2010

ActiveVOS Assignment

If your BPEL process is giving some problem in the assignment. Then you need to check that all the assignments are in the proper sequence.
Suppose there is one request (say employeeDetails) expecting employee information in the following sequence (suppose this sequence is defined in the xsd):
  • name
  • age
  • salary
  • company
  • DOB
Suppose you are doing assignment operation in assign activity like this:
  • name
  • salary (age is expected here)
  • age
  • company
  • DOB
PS: this problem will come only if all the above listed elements are defined in the sequence.

Now in assign activity, if you are not following sequence, then you will get run time fault at that assignment.

Solution:
You can select any assignment the click on the up/down button to make proper assignment.

No comments:

Post a Comment