2

我已经被困了2天。

有人可以提供一个如何将跨域 AJAX 发布到 WCF 服务的示例吗?

我正在尝试将图像上传到 WCF 服务器。

编辑

WCF 服务:

[WebInvoke(UriTemplate = "/upload", Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped), CorsEnabled]
void UploadImage(Stream image);

阿贾克斯调用:

function UploadImage() {
        image = document.getElementById("myimage").src;
        var data = '{"image": "' + image + '"}'
        //alert(data);
        $.ajax({
            url: "http://localhost:44665/api/upload",
            type: "POST",
            contentType: "application/json",
            data: data,
            success: function (result) {
                alert("success");
            },
            error: function (jqXHR, textStatus, errorThrown) {
                console.log(jqXHR.responseText);
            }
        });
    }

如果我将 WCF 参数从 Stream 更改为字符串,我可以让它工作。但我需要上传图片而不是字符串。

我现在收到一个 WCF 错误,上面写着:

The server encountered an error processing the request. See server logs for more details.

** 编辑 2 ** 我添加了以下答案中提到的 global.asax 代码并将其添加到我的 web.config 中:

<configuration>
<system.web>
    <compilation debug="true" targetFramework="4.0" />
</system.web>

<system.serviceModel>
    <behaviors>
        <serviceBehaviors>
            <behavior name="myServiceBehavior">
                <servicedebug includeexceptiondetailinfaults="true" />
            </behavior>
            <behavior name="">
                <serviceMetadata httpGetEnabled="true" />
                <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>

        </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true"
                               aspNetCompatibilityEnabled="true"/>
</system.serviceModel>
</configuration>

我现在在 Google Chrome 控制台中收到一条错误消息:

POST http://localhost:44665/api/upload 500 (Internal Server Error) 
4

2 回答 2

5

因此,您正在尝试从 JavaScript 对托管在另一个域中的 WCF 服务进行 POST 操作。通常,如果不在 WCF 服务端进行一些特殊设置,您就无法做到这一点。

您必须将以下标头添加到Global.asax.cs服务端的响应中(如果服务项目不包含Global.asax.cs创建一个)。

protected void Application_BeginRequest(object sender, EventArgs e)
{
   //..
   EnableCrossDomainCall();
}

private void EnableCrossDomainCall()
{
    // this header tells that from any domain you can access me.
    HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");

    if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
    {
        // this one tells about the supported methods to client.
        HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods",
                      "GET, POST, OPTIONS");

        HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", 
                       "Content-Type, Accept");

        HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");

        HttpContext.Current.Response.End();
    }
}

更新:

您不能只通过 AJAX 发布任何文件,通过 AJAX 您只能传输数据。您可以使用这个使用隐藏 iframe 的插件来上传模仿 AJAX 的文件。

您可以在此链接中处理 WCF 端的流对象。尝试先上传小尺寸图片,您可以通过在 web.config 中设置maxRequestLength来控制最大尺寸。

于 2012-06-07T17:08:28.600 回答
0

我遇到了这个问题并尝试了代码不起作用。

我更改了代码并开始工作。

                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST,OPTIONS");

                if ((HttpContext.Current.Request.HttpMethod == "OPTIONS"))
                {

                    HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
                    HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
                    HttpContext.Current.Response.End();
                 }
于 2016-06-24T19:44:21.457 回答