xmlHttp.status 404 I get 200 on my dev server and 404 on my qa

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wkerplunk
    New Member
    • Oct 2006
    • 3

    xmlHttp.status 404 I get 200 on my dev server and 404 on my qa

    I am getting two different xmlHttp.status codes back from two different servers with the same files on each server. What should I check?

    xmlHttp.status 404 on the qa server doesnt complete request

    xmlHttp.status 200 on the dev server all is great.

    Any Ideas what could be missing?
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    The first thing to check is if the page works without Ajax. If you type the URL that you use in the open() method in the address bar (if using GET) or submit to (if using POST), does it give the expected output?

    Comment

    • Qualidator
      New Member
      • Jun 2008
      • 1

      #3
      If you are using a httpHandler make sure you have added the POST verb or all (*) in web.config.
      Examples: add verb="GET,HEAD, POST" or add verb="*"

      Comment

      Working...