> Below is code which creates a return type sequence in
> idl which can vector or array anything you wish.
>
> typedef sequence<string> example;
>
>
The definition above applies only to string, however it
could be any object type you can defnine in IDL
Example:
struct Employee
{
string firstName;
string lastName;
string address;
string city;
string state;
string phone;
floatsalary;
}; // End struct Employee
typedef sequence<Employee> EmployeeList;
Employee list would be an array or Vector of items of type Employee