Www and webplayer problems; UriFormatException

Running on Android, iOS and desktop works fine, but running my game in the webplayer won’t work. I make connection with an online API via de Www class, and whenever initializing the Www class with a (valid) URL, it throws an UriFormatException.

An example of the URL used:

http://game.company.com/api/user/token/

And the exception:

UriFormatException: Invalid URI: The format of the URI could not be determined.
MonoForks.System.Uri..ctor (System.String uriString, Boolean dontEscape)
MonoForks.System.Uri..ctor (System.String uriString)
(wrapper remoting-invoke-with-check) MonoForks.System.Uri:.ctor (string)
MonoForks.System.Windows.Interop.PluginHost.get_SourceUri ()
MonoForks.System.Windows.Browser.Net.CrossDomainPolicyManager.GetCachedWebPolicy (MonoForks.System.Uri uri)
UnityEngine.UnityCrossDomainHelper.GetSecurityPolicy (System.String requesturi_string, IPolicyProvider policyProvider)
UnityEngine.UnityCrossDomainHelper.GetSecurityPolicy (System.String requesturi_string)
UnityEngine.WWW:get_isDone()
<SendRequestRoutine>c__IteratorB:MoveNext() (at Assets/Scripts/Network/WwwHandler.cs:15)
UnityEngine.MonoBehaviour:StartCoroutine(String, Object)
WwwHandler:SendRequest(ApiRequest) (at Assets/Scripts/Network/WwwHandler.cs:11)
ApiRequest:Send(Action`1, Action`1) (at Assets/Scripts/Network/ApiRequest.cs:105)
<WaitForViews>c__IteratorA:MoveNext() (at Assets/Scripts/GameManager.cs:43)

I’ve got a crossdomain.xml in place in the root of my webspace (http://game.company.com) which looks like this:

<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*"/>
</cross-domain-policy>

The URL looks valid and the fact that it works perfectly fine on all other platforms is weird. Maybe the problem lies in the URL specified in the crossdomain.xml? Hopefully someone can shed a little light on this.

Thanks!

I seem to have fixed this issue with help of this post: http://forum.unity3d.com/threads/222684-CrossDomain-xml-partial-rejection?p=1488436&viewfull=1#post1488436