webservice主站点调用顺利,子站点调用失败

webservice主站点调用成功,子站点调用失败?如题目,发布到应用程序的webservice主站点,调用时成功..改到子

webservice主站点调用成功,子站点调用失败?
如题目,发布到应用程序的webservice主站点,调用时成功..改到子站点时失败.请问为什么..子站点是直接写在page中的js

$.ajax({
async:false,
type:"POST",
url:"_Layouts/webservices/SMFileChangeReadList.asmx",
contentType:"text/xml; charset=utf-8",
processData:false,
data:xmlWrap,
dataType:"xml",
success:function (result) { //succes
          alert("成功!"); 
                    },
      error:function (result) { //succes
          alert("失败!"+result.d); 
          
          }
});