I have a problem, my applet is signed and crossdomian xml was put at the root of the apache server. Application is accessed through apache https server. If my application(www.dns.com) is accessed with in the network, it works fine. If application accessed from out side network, javascript call to applet changes dns to ip address with port 80, where as my application is https with default port 443. So, my application is failing.
my crossdomain xml:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross- domain- policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
this link gives more info.
Any ideas.. please.