|
|
1. Julian Robichaux03/26/2008 05:29:45 PM
Homepage: http://www.nsftools.com
Gary -
You can use arrays as method parameters or return values by using the corresponding Array_Holder class (probably StringArray_Holder for your situation). Or you could just have the array as a part of a complex data type. There are examples here:
{ Link }
{ Link }
Personally, I think I'd use a complex data type in both cases if I was trying to pass around Notes Document data. I can't think of a situation where I would EVER write a function/method that had even close to 31 parameters.
- Julian
2. Gary Devendorf03/28/2008 03:09:53 PM
Homepage: http://interoptips.com
Thanks Julian. When I'm showing code demos, it easier to show a document as a list of parameters. Also, some applications don't handel complext data type when call web services.
However, you are right, don't use a long parameter list if you don't have to.