all the user names right now are sinble alphanumeric.  We are getting the same 
behavior 
from all 6 machines we have tried running IE7 from.  The login screen is part 
of a very 
small logic shell application that then points to different flex modules.  The 
app just 
passes username and password to the server for verification.  Below is the 
function that is 
called when you click login

public function login():void {
        var infoModel:XML;
        
        var userUID:String = UIDUtil.createUID();

        setUserUID(userUID);    

        infoModel =
                <batch>
                        <login>
                                <username>{username.text}</username>
                                <password>{password.text}</password>
                                
                        </login>
                        <get-users.user>
                                <username>{username.text}</username>
                                <password>{password.text}</password>
                        </get-users.user>                               
                </batch>
                ;                        
                        
        // prepare the request parameters
        var request:URLRequest = new URLRequest();
        request.url = dataServerURL + "batch*"; 
        request.contentType = "application/xml";
        request.method = URLRequestMethod.POST;
        request.data = infoModel.toString();
                
        // now create the communications object and send the request data
                                
        var loader:URLLoader = new URLLoader();
        loader.addEventListener(Event.COMPLETE, processTheLogin);
        loader.addEventListener(IOErrorEvent.IO_ERROR , loadIOError);
        //setApplicationBusy();
        loader.load(request);           
}

Reply via email to