使用wcf服务检索在线数据

时间:2014-04-12 11:17:50

标签: c# wcf

我面临一个小问题,我希望你有一个解决方案。 我正在使用wcf服务来检索在线数据(来自雅虎财经)。 此服务调用连接到yahoo的API,以便检索我需要的数据。 但是,当我调用API时,我收到错误

  

WebClient请求期间发生异常。

我从控制台应用程序调用此服务。

我希望你能帮我解决这个问题。

==这是代码

/* wcf service Interface */
 [ServiceContract]
public interface IService1
{

    [OperationContract]
    string GetData(int value);


    // TODO: Add your service operations here
}

/* the service calls this function which belongs to another c# project */
public String updateDataBase()
{
    DBHandler handler = new DBHandler();
    /* Goes online et retrieve the data, when its called, the exception occurs */
    handler.updateData();
    return "success";

}

1 个答案:

答案 0 :(得分:0)

我通过以管理员身份运行visual studio解决了我的问题。

谢谢。