Referring to this page
The syntax you suggest for allowing multiple URLs doesn't seem to work:
html.AllowJavaScriptUrls({ all: "local", "http://www.brightsign.biz" })
But that resulted in flashing red LED on the player. Can you really pass multiple comma separated items into an associative array just like that? I would think that an item in an associative array only can take a single value. I assume the two comma separated items associated with the "all" key should be wrapped in an array, or similar.
Furthermore, I tried the following in order to communicate with a test server using port 8080:
html.AllowJavaScriptUrls({ all: "http://192.168.0.21:8080" })
But that resulted in a security error. The only way I can make it work is with the wildcard syntax:
h.AllowJavaScriptUrls({ all: "*" })