I created a proyect in flex builder with application server type set to none
when I debugg, I can acces the web service from my local machine thats on a site http://mysite.com/ws/ws.aspx?wsdl
when I upload the flex app to mysite.com/myapp.html it works great
but when I upload it to myapp.mysite.com/myapp.html it wont access the web service
anyone knows what I'm missing?
Thanks
ps. the WS was created with vb.net, and when I create a flex proyect with application server type set to .net, it wont access the WS from my local machine
this is my crossdomain.xml file
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*"/>
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
**My guess is that it isn't a flex problem, but a .net security feature... wich I don't know how to configure.
.NET won't allow apps to use it outside of its own domain.**