您好我已经创建了一个非常简单的服务,它将返回true。代码段如下。
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public bool CompileProject()
{
return true;
}
}
当我在IIS中托管服务后尝试访问上述方法时,我只获得操作超时异常。
我已将timeout属性设置为500000毫秒。虽然我得到了这个例外。
任何建议或我遗失任何内容。
-Lokesh。