// http://127.0.0.1:8888/midi/test.mid
String url = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/midi/" + midiName + ".mid";final Sound sound = soundController.createSound(Sound.MIME_TYPE_AUDIO_X_MIDI, url);this.selectedSoundList.add(sound);...for(Sound sound : this.selectedSoundList){Window.alert(sound.getLoadState().toString());sound.setVolume(80);sound.play();}