php 利用 soap调用.Net的WebService asmx文件
时间:2011-02-25 来源:JangoJing
.NET部分 webservice要注意的地方
       /*
         *      <system.web>在这个节点中加入如下内容
                <webServices>
             <protocols>
                <add name="HttpSoap"/>
                <add name="HttpPost"/>
                <add name="HttpGet"/>
                <add name="Documentation"/>
             </protocols>
            </webServices>  
         */
        [WebMethod(Description = "This......", EnableSession = false)]
        public string ChkWele(string username, string psw)
        {
            string ret = "";
            return ret;
        }
   相关阅读 更多 + 
    
  









