Joe_m 0 Denunciar post Postado Maio 25, 2010 Sou Iniciante em visual studio e estou precisando de uma ajudinha com o codigo abaixo erro wscliente does not exist in the current context Rotina com erro using System; using System.Windows; using System.Windows.Controls; using SLCadastro.ServiceReferenceCliente; namespace SLCadastro { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void UserControl_Loaded(object sender, RoutedEventArgs e) { Erro aqui--> WSCliente.ConsultarAsync(); Erro aqui--> WSCliente.ConsultarCompleted += new EventHandler<ConsultarCompletedEventArgs>(WSCliente_ConsultarCompleted); } void WSCliente_ConsultarCompleted(object sender, ConsultarCompletedEventArgs e) { if (e.Error == null) DG.ItemsSource = e.Result; } } } ---------------------------------------------------------------- Webservice using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using DTO; /// <summary> /// Summary description for WebService /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. // [system.Web.Script.Services.ScriptService] public class WSCliente : System.Web.Services.WebService { public WSCliente() { //Uncomment the following line if using designed components //InitializeComponent(); } clsCliente.clsCliente objClsCliente = new clsCliente.clsCliente(); [WebMethod] public void Inserir(Cliente obj) { objClsCliente.create(obj); } [WebMethod] public ClienteCollection Consultar() { return objClsCliente.SelectAll(); } } Compartilhar este post Link para o post Compartilhar em outros sites
quintelab 91 Denunciar post Postado Maio 26, 2010 Você deve declarar uma variável que instancie seu WebService. Não vi onde declarou o WSCliente Abraços... Compartilhar este post Link para o post Compartilhar em outros sites
Joe_m 0 Denunciar post Postado Maio 26, 2010 Valeu a Ajuda Compartilhar este post Link para o post Compartilhar em outros sites