exception -- cannot create player
I have an application that is streaming video. I've been developing it with the sprint wireless toolkit and everything runs fine on the emulator. I went to try and build it with the wtk2.2 setup from sun and keep getting the cannot create player http:.... error Same exact code. I'm including the media api jsr whatever and I have no clue. Here is the run function that creates the player. Any suggestions.
public void run() {
try {
repaint();
//Alert alert = new Alert("Loading. Please wait ....");
//alert.setTimeout(Alert.FOREVER);
midlet.displayMgr.pushDisplayable(midlet.movieLoader);
midlet.movieLoader.watchLoader(this);
//midlet.displayMgr.pushDisplayable(alert);
//player = Manager.createPlayer("http://69.149.145.131/VideoStream/Movie_2.mp4");
System.out.println("This is the movie being loaded: "+videoUrl);
player = Manager.createPlayer(videoUrl);
player.addPlayerListener(this);
//player.setLoopCount(-1); // play indefinitely
player.setLoopCount(1); // play indefinitely
player.prefetch(); // prefetch
player.realize(); // realize
player.start(); // and start
} catch(Exception e) {
System.err.println(e);
e.printStackTrace();
}
}

