无法第二次调用Webservice c#

时间:2013-05-10 10:16:36

标签: c# asp.net web-services web updatepanel

我使用网络服务插入新用户。我第一次插入数据时效果很好。当我立即插入它我没有得到任何回应。请找到以下代码。

SCServiceAPI webService = new SCServiceAPI();
UserInfo NewUser = new UserInfo();
NewUser.Username = mUserName;
NewUser.Password = mPassword;
NewUser.ServiceCenter = mServiceCenter;
NewUser.CompanyUniqueID = ConfigurationManager.AppSettings["WebServiceUniqueID"].ToString();

UserInfo[] newUserInfo = new UserInfo[] { NewUser };

UserResponse[] mUserResponse = webService.InsertUserInfo(newUserInfo);

仅适用于Windows应用程序,只有在与Web应用程序一起使用时才会出现问题。

**这是我的第一个问题。请忽略错误中的任何错误: - )

0 个答案:

没有答案