Hi JB,

I think you can't use Java 1.4 because we use a lot of the Java 5
features and as far as I can remember also dependencies like
Camel do so. And I also see no reason why we should stay with Java 1.4.
Yes, I know that some companies have very strong restictions on
which Java to use but do we really need to care about that? Java 5 is
now in use for years and stable enough.

Lets hear what the others say :)

Regards,
Lars


Jean-Baptiste Onofré schrieb:
> Hi guys,
>
> I would like only a confirmation. In the SMX getting started documentation,
> we have JDK 1.4.x or greater for deployment (at least for SMX3).
>
> I guess that we need to use pure 1.4 compatible source. Do you confirm ?
>
> For example, I think that I need to use "old" style Iterator such as :
>
> for(Iterator iterator = myList.iterator(); iterator.hasNext(); ) {
>    MyObject object = (MyObject)iterator.next();
>    ...
> }
>
> in place of :
> myList<MyObject> = ...;
> for(MyObject object:myList) {
>    ...
> }
>
> Thanks,
> Regards
> JB
>   

Reply via email to