I'm trying to send data to a server via HTTPS and am having no luck. Our 
Backend developer has a test web page sending form data to this via https with 
no issues. However, when I try to send data to this same web service via https 
in flash, the request data appears to get truncated. 

Can anyone point me in the right direction?  Thanks very much.

AS3: 

private function SendCCInfo():void {
        var variables:URLVariables = new URLVariables();
        variables.firstname = mCCFirstName.text;
        variables.lastname = mCCLastName.text;
        variables.street = mCCAddress.text;

        var urlRequest:URLRequest = new URLRequest(https://secure.mydomain.com);
        urlRequest.method = URLRequestMethod.POST;
        urlRequest.data = variables;
        
        var urlLoader = new URLLoader();
        urlLoader.addEventListener(Event.COMPLETE, PayListener);
        urlLoader.load(urlRequest);
}

private function PayListener(e:Event):void
{
        
}



      
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to