WCF Additional information: The remote server returned an error: NotFound. hatası
Merhaba arkadaşlar Windows Phone uygulamasını WCF uygulaması ile ilişkilendirmeye çalışıyorum wcf application projesi açıyorum bir tane test amaçlı default gelen metodlar var hiç dokunmuyorum
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj684580(v=vs.105).aspx
yukarıdaki sitede microsoft'un default gelen metodlar ile yaptığı bi örnek var bütün adımlar yaptım ama
Additional information: The remote server returned an error: NotFound.
hatası alıyorum düşündüm sonra wcf projesi win.phone uygulaması ile aynı solition içinde olduğu için çalışmıyordur dedim yeni bir visual studio açıp
aynı windows phone uygulamasını yaptım web referans olarak ekledim verdiğim linkteki bütün adımları yaptım ama yine bu hatayı aldım nedense hiç veri çekemedim yardımlarınızı bekliyorum.
Detaylar:
Collection Type: System.Collections.Generic.List
Dictionary collection type: System.Collection.GenericDictionary
Kod
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using Social.WP.Resources;
namespace Social.WP
{
public partial class MainPage : PhoneApplicationPage
{
public MainPage()
{
InitializeComponent();
TestWebService();
}
private void TestWebService()
{
int testValue = 7;
ServiceReference1.Service1Client clientForTesting = new ServiceReference1.Service1Client();
clientForTesting.GetDataCompleted += new EventHandler<ServiceReference1.GetDataCompletedEventArgs>(TestCallback);
clientForTesting.GetDataAsync(testValue);
}
private void TestCallback(object sender, ServiceReference1.GetDataCompletedEventArgs e)
{
this.tbWebServiceResult.Text = e.Result;
}
}
}
Hata sayfası ektedir şimdiden teşekkürler