我的可移植类库面向.NET framework 4.5,silverlight 4及更高版本以及windows phone 8.我想使用添加服务引用在该PCL中使用SOAP服务。
ServiceReference1.TadawulMarketServicePortTypeClient c = new ServiceReference1.TadawulMarketServicePortTypeClient(ServiceReference1.TadawulMarketServicePortTypeClient.EndpointConfiguration.TadawulMarketServiceSOAP11port_http, new EndpointAddress(""));
c.getMarketSummaryCompleted+=c_getMarketSummaryCompleted;
c.getMarketSummaryAsync();
}
private void c_getMarketSummaryCompleted(object sender, ServiceReference1.getMarketSummaryCompletedEventArgs e)
{
// throw new NotImplementedException();
}
当我使用此代码时在PCL上,服务返回null但是当我在Windows phone app中使用它时,它会返回数据!
我想了解其原因以及如何正确使用此服务。