hi:
I wan't to play sound located at another site, i set the crossOrigin=true:
```java
Sound sound =
soundController.createSound( Sound.MIME_TYPE_AUDIO_MPEG_MP3, proxy.getFileUrl(), false, true );
```
play sound failed, below is the http request captured by Chrome debug view:
Request URL:
- Request Headersview source
Origin:
Referer:
User-Agent:
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.60 Safari/537.1
when i click view source, it shows:
From the chrome debug view, under "network" tab, i can see the http status for the request is always "canceled" and Type is always "Pending".
I don't know where to start to trace this bug.
Any ideas?
Many thanks.