I am using Blazeds for the first time... trying to communicate with a secure api - and send a username and password over https, to receive xml response. But there seems to be a security sandbox violation between my flex app. and the Blaze/tomcat server I am using as my proxy on localhost:
Connection to https://localhost:8400/Test/messagebroker/httpsecure halted - not permitted from http://localhost:8400/Test/Test-debug/Test.swf How do I get the Flex app. to send Test.swf via a secure channel? Would that solve my problem? Here is an excerpt from my proxy-config.xml: <adapters> <adapter-definition id="http-proxy" class="flex.messaging.services.http.HTTPProxyAdapter" default="true"/> <adapter-definition id="soap-proxy" class="flex.messaging.services.http.SOAPProxyAdapter"/> </adapters> <default-channels> <channel ref="my-secure-http"/> <channel ref="my-http"/> </default-channels> <destination id="photoshelter"> <properties> <url>https://www.photoshelter.com/bsapi/1.1/?auth</url> <remoteusername>blah</remoteusername> <remotepassword>blah</remotepassword> </properties> <adapter ref = "http proxy"/> </destination>