我发了一个问题 Sending SOAP message with C# Help Needed
我遵循了Darin Dimitrov的解决方案建议。
但是我有以下问题:
我在visual studio web reference下为我的项目添加了引用。它没有生成任何强类型的类。我不得不从Visual Studio命令提示符转到Visual Studio工具。创建了一个名为" PanelistService.cs"的C#文件。在第二个答案中没有像Rajesh所描述的那样创建配置文件。然后我将文件复制并粘贴到项目中。
我现在收到以下错误:类型或命名空间名称' RegistrationBindingsClient'找不到(你错过了使用指令或汇编引用吗?)
我还需要能够得到回复。任何帮助将不胜感激。
非常感谢
这是一些被请求的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using service1;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
var registration = new RegistrationType();
registration.Source = new SourceType();
registration.Source.SourceID = "50001255";
registration.Email = "adsvine@gmail.com";
registration.FirstName = "Muz";
registration.LastName = "Khan";
var countryUK = new CountryTypeUK();
countryUK.CountryID = 2000077;
countryUK.Language = 2000240;
countryUK.Address = new AddressTypeUK();
countryUK.Address.Postalcode = "N19 3NU";
registration.Item = countryUK;
registration.DOB = new DateTime(1977, 3, 8);
registration.Gender = 2000247;
}
}