Accept UTF-8 encrypted strings in ASP.NET WebService

mangcimoig

New Member
I've got a ASP.NET WebService that looks something like this:\[code\][WebMethod]public static void DoSomethingWithStrings(string stringA, string stringB){ // and so on}\[/code\]An third party application should call this webservice. However this application encodes strings as UTF-8 and all umlauts are replaced by '??'. I can view the call and the special characters are formatted well:\[code\]<?xml version="1.0" encoding="utf-8" ?><!-- ... --><SoapCall> <DoSomethingWithStrings> <stringA>? - ? -
 
Back
Top