flash - Error connecting to URL -


i trying connect service pc.

https://www.epithimies.gr/consumers/registration/proximity.pulse.consumers.registration/application/webservicedescriptors/registration/greecesecured.xml

using flex webservice libs this:

error opening url 'https://www.epithimies.gr/consumers/registration/proximity.pulse.consumers.registration/application/registrationwebservice.asmx'

is because service under https?

thanks in advance

edit

after research found service send 500 error , flash cannot full server response

if app loaded insecure location (http, not https), not alowed load https, unless service in question has configured crossdomain policy allow such interaction.

edit bad, it's not case. they've set 'secure' attribute 'false'.

epithimies.gr has following policy https://www.epithimies.gr/crossdomain.xml

<cross-domain-policy>     <site-control permitted-cross-domain-policies="all"/>     <allow-http-request-headers-from domain="*" headers="*" secure="false"/>     <allow-access-from domain="*" secure="false"/> </cross-domain-policy> 

try loading data service common urlloader , see error message saying.


Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -