当前位置: 代码迷 >> Windows Mobile >> 使用WebService手机端返回异常:NotFound.“System.ServiceModel.CommunicationException”类型的
  详细解决方案

使用WebService手机端返回异常:NotFound.“System.ServiceModel.CommunicationException”类型的

热度:208   发布时间:2016-04-25 07:25:10.0
使用WebService手机端返回错误:NotFound.“System.ServiceModel.CommunicationException”类型的
搞了一上午不知道是什么问题,求大神赐教。
WebService在网页测试了代码没问题。手机端代码如下(登录):
AppService.ChineseTeachingAppWebServiceSoapClient appservice = new AppService.ChineseTeachingAppWebServiceSoapClient();
            string account = txtAccount.Text;
            string pwd = txtPwd.Password;
            appservice.LoginCompleted += (s, arg) =>
            {
                Dispatcher.BeginInvoke(() =>txtTS.Text = arg.Result.ToString());
            };
            appservice.LoginAsync(account,pwd);

运行错误如下:
等待大神求助。

------解决方案--------------------
你是不是添加过一次,删掉了,后来又加了一次
------解决方案--------------------
可能是你没权限。
  相关解决方案