我正在尝试让一些应用程序连接到 WCF 服务。除了在实际设备上进行调试外,一切都运行良好。它报告超时异常。我在使用模拟器时没有问题,那里一切正常。
这是我主页上的代码:
public partial class MainPage: PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
ServiceReference1.WCFClient serviceClient = new ServiceReference1.WCFClient();
serviceClient.LoadExamsAsync("Marco");
serviceClient.LoadExamsCompleted += serviceClient_LoadExamsCompleted;
}
void serviceClient_LoadExamsCompleted(object sender, ServiceReference1.LoadExamsCompletedEventArgs e)
{
lls2.ItemsSource = e.Result; // longlistselector
}
}
来自 IExams.cs:
[ServiceContract]
public interface IExams
{
[OperationContract]
List<LoadExamsResult> LoadExams();
}
并来自 Exams.svc.cs:
public class ExamsService : IExams
{
public ExamsDataClassesDataContext data { get; set; }
public ExamsService()
{
data = new ExamsDataClassesDataContext();
}
public List<LoadExamsResult> LoadExams(string un)
{
return data.LoadExams(un).ToList();
}
}
LinqToSql 类是自动创建的,我从 Sql Server 中的数据库调用存储过程。
这是我的 web.config 文件:
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="ConnectionString" connectionString="Data Source=Alex;Initial Catalog=Ispiti;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" executionTimeout="1200"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
并来自我的 ServiceReferences.ClientConfig
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="basicHttpBinding_IExams" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://192.168.137.146:14584/Exams.svc" binding="basicHttpBinding"
bindingConfiguration="basicHttpBinding_IExams" contract="ServiceReference1.IExams"
name="basicHttpBinding_IExams" />
</client>
</system.serviceModel>
</configuration>