2012-09-25 65 views
0

當我添加一個服務引用我MVC3應用:我得到它需要在參數​​方法:Authentifcation使用GUID + Windows 8的

void getcities(string token); 
void getCountry(string token); 

,但是當我添加一個服務引用到Windows 8的應用程序,產生不包括令牌的代理:

public System.Threading.Tasks.Task<Maquette_MyAirport_Win8.ServiceFlightInfo.CitiesResponse> GetAllCitiesAsync() 
{ 
    Maquette_MyAirport_Win8.ServiceFlightInfo.BaseRequest inValue = new Maquette_MyAirport_Win8.ServiceFlightInfo.BaseRequest(); 

    return ((Maquette_MyAirport_Win8.ServiceFlightInfo.FlightInfoService)(this)).GetAllCitiesAsync(inValue); 
} 

所以,當我把這個方法沒有​​,它拋出一個錯誤:您沒有權限訪問該服務。

您有什麼解決方法嗎?

回答