-
Eclipse.Net
here is my issue
i can go to https://wpmls02 and it will automaticlly log me in however, when i try and go from my our portal the page loads up i get a grey screen and nothing i know its something to do with either the ssl certificate and maybe the isa listener this is from internal
has anyone had any issues like this
all because i want use silverlight pfff
-
we have it when the first login takes 5 minutes to load the page. but we only use it internally and we don't access it via a portal so i cant realy help with that all i can suggest is that you ring them.
-
It's actually hard coded into the page the url silverlight will use for accessing the backend web services.
You can try adding this file to the root of your web server:
ClientAccessPolicy.xml
HTML Code:
<?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="*"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
-
yea have contacted them but they dont really want to know i would have to create a hyper link to the server directly
Hi nick just checked the file you named
i think this looks like the same you have posted
Code:
<?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="*"/>
</allow-from>
<grant-to>
<resource path="/" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
-
only thing i can think of is allow-from http-request-headers should i change this to https ?