I am trying to call an asmx service using jQuery Ajax.
POST /YderWS.asmx HTTP/1.1 Host: localhost Content-Type: text/
Seems like you missed to add these:
contentType: 'text/xml; charset=utf-8', dataType: 'xml'
After adding these 2 lines it works fine for me debugging it with Selenium.