Silverlight,PostAsync不返回任何响应

时间:2014-04-17 13:34:37

标签: c# silverlight post csrf dotnet-httpclient

我一直在尝试使用POST将图片上传到我的网站,图片会转换为base64进行传输。

不幸的是,我偶然发现了我的Siverlight应用程序出错。我已经成功获得了图像的base64字符串,现在我想上传它,这是我用来执行POST请求的代码:

HttpClient hc = new HttpClient();
HttpResponseMessage response = hc.PostAsync("http://mywebsite.com/service.php", new StringContent("image=" + base64)).Result;
if (response.IsSuccessStatusCode)
{
    MessageBox.Show("Uploaded.");
}

第二行正在运行时没有任何反应,它只是完全暂停,从不跳到第三行。

由于它是Async,我认为我应该在await之前添加,将行更改为:

var response = await hc.PostAsync("http://mywebsite.com/kurv.php", new StringContent("image=" + base64));

它给了我错误:

  

无法等待' System.Threading.Tasks.Task System.Net.Http.HttpResponseMessage>'

我还检查了silverlight,它说Silverlight无法访问不允许访问的网站,因此我已将两个文件添加到我网站的根目录中({{3} }):clientaccesspolicy.xml和crossdomain.xml。

clientaccesspolicy.xml看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<access-policy>
    <cross-domain-access>
        <policy>
            <allow-from http-request-headers="*">
                <domain uri="*"/>
            </allow-from>
            <grant-to>
                <resource path="/" include-subpaths="true"/>
            </grant-to>
        </policy>
    </cross-domain-access>
</access-policy>

我的crossdomain.xml看起来像这样:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
  <allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>

当然这是不安全的,但我现在只使用它来进行测试,并让我的silverlight应用程序正常工作。

1 个答案:

答案 0 :(得分:0)

请勿使用等待,请使用。ContinueWith,如下所示。 Silverlight对阻塞操作不起作用。

HttpClient client = new HttpClient();
        client.BaseAddress = new Uri("http://localhost/myproject/");

        // Add an Accept header for JSON format.
        client.DefaultRequestHeaders.Accept.Add(
            new MediaTypeWithQualityHeaderValue("application/json"));

        var t = client.GetAsync("api/values");
        t.ContinueWith(p =>
        {
            if (p.Result.IsSuccessStatusCode)
            {
                var users = p.Result.Content.ReadAsByteArrayAsync().Result;
                if (users != null)
                {

                }

            }

        });