Asp.net 操作已超时--WCF服务RSS中出现异常

Asp.net 操作已超时--WCF服务RSS中出现异常,asp.net,wcf,Asp.net,Wcf,您好,我已经创建了一个WCF服务,其方法如下 public List<AppharborDbModel.MMTS_Stations> GetStations() { db = new AppharborDbModel.AppHarborDBEntities(); var x = from n in db.MMTS_Stations select n; return x.ToList<AppharborDbModel.MMTS_Stations>()

您好,我已经创建了一个WCF服务,其方法如下

public List<AppharborDbModel.MMTS_Stations> GetStations()
{
    db = new AppharborDbModel.AppHarborDBEntities();
    var x = from n in db.MMTS_Stations select n;
    return x.ToList<AppharborDbModel.MMTS_Stations>();
}
public List GetStations()
{
db=新的AppharborDbModel.AppHarborDBEntities();
var x=从n到db.MMTS_站选择n;
返回x.ToList();
}
当我从客户端应用程序使用它时,我得到以下异常

TimeOutException

The request channel timed out while waiting for a reply after 00:00:58.8880000.        Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.

The operation has timed out

Description: An unhandled exception occurred during the execution of the current web   request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Net.WebException: The operation has timed out

Source Error: 


Line 601:        
Line 602:        public  System.Collections.Generic.List<ServiceWebReference.MMTS_Stations> GetStations() {
Line 603:            return base.Channel.GetStations();
Line 604:        }
Line 605:    }
TimeOutException
请求通道在00:00:58.888000之后等待答复时超时。增加传递给请求调用的超时值或增加绑定上的SendTimeout值。分配给此操作的时间可能是较长超时的一部分。
操作已超时
描述:执行当前web请求期间发生未处理的异常。请查看堆栈跟踪以了解有关错误的更多信息以及错误在代码中的起源。
异常详细信息:System.Net.WebException:操作已超时
源错误:
第601行:
第602行:public System.Collections.Generic.List GetStations(){
第603行:返回base.Channel.GetStations();
第604行:}
第605行:}
我正在使用.Net 4.0中的“WCF服务”web模板,该模板具有隐式端点和绑定。。因此,web.config中没有端点r绑定


我应该在哪里更改超时值?

在承载WCF端点的服务器上更改超时: