서버사이드에 XML데이터를 업로드 하기 위해서는 URLLoader()를 사용하고 URLRequest()객체에 데이터를 보내고자 하는 xml데이터로 설정하고 데이터의 Mime타입을 "text/xml"로 설정하면 된다.
var xmlData:XML = <gamescore>
<username>{userName}</username>
<score>{score}</score>
</gamescore>;
[ URLRequest의 데이터와 컨텐츠 mime 타입설정 ]
URLRequest.data = xmlData;
URLRequest.contentType = "text/xml";