Ok,
thanks for your advice Brett, James.
I'll ponder the options over several beers, probably forget,
and probably be back with follow up troubles 
next week.
Thanks again
Doug

On Friday 10 August 2007 15:50, Brett Wooldridge wrote:
> Jaxws ri claims to support MTOM but I have not used it.  A web search
> revealed that it's been in for about 18 months, so maybe it's baked
> (depends on how much use it's gotten).  Re: String[], I bit the bullet and
> performed the refactor on our code, but we didn't have nearly as many
> methods returning arrays (of any type) as you.
>
> I did notice one interesting thing in my refactor, because we use the new
> Java5 'for' looping construct often in our code meant very little of the
> code had to change, i.e.:
>
> String[] foos = service.doSomething();
> for (String foo : foos)
> {
>    ...
> }
>
> Refactored seamlessly to:
>
>
> List<String> foos = service.doSomething();
> for (String foo : foos)
> {
>    ...
> }
>
> Everything "just worked".  There was a very few places where we did
> something like foos[0] that we had to change to foos.get(0).
>

Reply via email to