# HTTP Status error 0

**URL:** https://forum.kirupa.com/t/http-status-error-0/256584
**Category:** flash
**Created:** [April 4, 2008, 9:59am UTC](https://forum.kirupa.com/t/http-status-error-0/256584 "2008-04-04T09:59:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![LeonLee](https://avatars.discourse-cdn.com/v4/letter/l/d6d6ee/32.png) [@LeonLee](https://forum.kirupa.com/u/LeonLee)
#### Post date: [April 4, 2008, 9:59am UTC](https://forum.kirupa.com/t/http-status-error-0/256584/1 "2008-04-04T09:59:52Z")

</div>

Hello all,

I am writing a flash app which requires words to be checked against a dictionary stored on a server, and am doing the following call to a servlet from within an swf file.

var url:String = “http://\<myDomain\>/wordcheck?words=test”

\_loader = new URLLoader();  
\_loader.dataFormat = URLLoaderDataFormat.TEXT;  
var request:URLRequest = new URLRequest(url);  
\_loader.load(request);

The swf file is sitting on the same domain as the server and I set Local Playback Security to ‘access network’.

It all works fine in Internet Explorer but on other browsers I just get HTTP Status 0.

Any ideas what I’m doing wrong?
