4

我有一个看起来像这样的 ASP.NET WebService:

[WebMethod]
public static void DoSomethingWithStrings(string stringA, string stringB)
{
    // and so on
}

第三方应用程序应调用此 Web 服务。但是,此应用程序将字符串编码为 UTF-8,并且所有变音符号都替换为“??”。我可以查看通话并且特殊字符的格式很好:

<?xml version="1.0" encoding="utf-8" ?>
<!-- ... -->
<SoapCall>
    <DoSomethingWithStrings>
        <stringA>Ä - Ö - Ü</stringA>
        <stringB>This is a test</stringB>
    </DoSomethingWithStrings>
</SoapCall>

当我简单地在 webservice 方法中打印字符串时,这会产生以下输出:

?? - ?? - ??

这是一个测试

如何配置 WebService 以接受 UTF-8 编码的字符串?

更新

Fiddler 还告诉我 http 请求的内容类型字符集是 UTF-8。

更新 2

我尝试添加以下代码以global.asax进行调试:

public void Application_BeginRequest(object sender, EventArgs e)
{
    using (var reader = new System.IO.StreamReader(Request.InputStream))
    {
        string str = reader.ReadToEnd();
    }
}

这将读取实际的 SOAP 调用。StreamReaders 编码设置为 UTF-8 。SOAP 调用看起来正确:

<?xml version="1.0" encoding="UTF-8" ?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <DoSomethingWithStrings xmlns="http://www.tempuri.org/">
            <stringA>Ä - Ö - Ü</stringA>
            <stringB>This is a test!</stringB>
        </DoSomethingWithStrings>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

web.config文件中正确设置了全球化设置:

<globalization requestEncoding="UTF-8" responseEncoding="UTF-8" culture="de-DE" uiCulture="de-DE" />

所以看起来反序列化 SOAP 消息的东西不使用 UTF-8 而是 ASCII 编码。

4

4 回答 4

6

最后,事实证明在接受 HTTP 消息时出了点问题。我实际上不知道是什么操纵了 HTTP 请求,但我找到了一个解决方法。尽管 Fiddler 在我的 is just 中向我展示了正确的内容类型 ( ) ,text/xml; charset=utf-8这导致在 ASMX 序列化程序中回退到默认 (ASCII) 编码。我已将以下代码添加到处理程序中,现在一切正常。Application_BeginRequestRequest.RequestContext.HttpContext.Request.ContentTypetext/xmlApplication_BeginRequest

if (Request.RequestContext.HttpContext.Request.ContentType.Equals("text/xml"))
{
    Request.RequestContext.HttpContext.Request.ContentType = "text/xml; charset=UTF-8";
}

谢谢你的帮助!

于 2012-12-05T08:57:50.797 回答
0

试试这个:-

  byte[] bytes=Encoding.UTF8.GetBytes(yourString);

笔记:-

字符串从不包含任何 utf-* 或任何其他编码的内容

于 2012-12-04T14:43:29.650 回答
0

SOAP 调用在某处被解码为 ASCII - 每个变音符号都是 2 个字节,其中设置了高位,??当解码为 ASCII 时变成。

所以,这样的事情正在发生:

byte[] bytesSentFromClient = Encoding.UTF8.GetBytes("Ä - Ö - Ü");
string theStringIThenReceiveInMyMethod = Encoding.ASCII.GetString(bytesSentFromClient);
Console.WriteLine(theStringIThenReceiveInMyMethod);
//?? - ?? - ??

为了确认这确实发生了,您应该比较stringA == "Ä - Ö - Ü"而不是在某处打印它。

我想您可以先在项目范围内搜索“ASCII”,然后在找到任何东西时从那里开始工作。

你也可以试试

<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>

在文件中的<system.web>标签下Web.config

于 2012-12-04T16:06:09.747 回答
0

我有同样的问题。Asmx Web 服务将我的 UTF-8 转换为 ASCII,或者说是 ??????。你的帖子对我帮助很大。我找到的解决方案是将 SOAP 协议的版本从 1.1 更改为 1.2 我的意思是:

POST /WebService1.asmx HTTP/1.1
Host: www.tempuri.org
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.tempuri.org/HelloWorld"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <HelloWorld xmlns="http://www.tempuri.org/">
        <inputParam>Привет</inputParam>
    </HelloWorld>
  </soap:Body>
</soap:Envelope>

有问题。但是当我将请求更改为 SOAP 1.2 时:

POST /WebService1.asmx HTTP/1.1
Host: www.tempuri.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <HelloWorld xmlns="http://www.tempuri.org/">
       <inputParam>Привет</inputParam>
    </HelloWorld>
  </soap12:Body>
</soap12:Envelope>

问题解决了。

于 2013-03-12T10:02:55.740 回答