Web Player User-Agent

When using Unity webplayer, it seems the user-agent is going through as the browser that is being used. Is there a way to change this in the WWWForm? I am trying to retrieve XML that is suppose to be printed to the site, but since XML is downloaded by mozilla, certain servers convert it to HTML (which isn't useful for parsing).

There is no way to change the user agent as all downloads are handled by the browser. If you have access to the server configuration, you should try to set it up differently, so it doesn't do this. If you don't, then I guess your only options are either stripping the html from the downloaded data, or writing a custom http client using .Net sockets.