IMPORT CONFLICTS
----------------

When you compile this app, it is likely that you'll see the following error:

    [javac] ...\hiptop-sdk\examples\MIDlets\Demos\work\2.3\source\src\example\http\HttpTest.java:61: reference to List is ambiguous, both class java.util.List in java.util and class javax.microedition.lcdui.List in javax.microedition.lcdui match

Because the hiptop SDK runs on top of J2SE, conflicts can arise when compiling J2ME apps.  In this app, you must replace the following line in ${WTK_HOME}/apps/Demos/src/example/http/HttpTest.java:

import java.util.*;

with the following lines:

import java.util.Vector;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;

The List class is present in both java.util and javax.microedition.lcdui, and since they are glob imported, the compiler can't tell which one is desired.  Specifically calling out the java.util imports resolves the conflict.

Cheers,
Danger Engineering.
