Hi.
i have a problem with a Web Service
Right now, i have a Web Service developed in .Net.
And my client has a System Develop in Delphi.... the problem is this.
when the client send me a Data with "ñ" or "´" or any special character this convert into a "??".
I Search in google, about encoding and i made changes in my Web.config
but problem still.
here are the changes that i made in my web config...
<?xml version="1.0" encoding="utf-8"?>
and this one too
<system.web>
<globalization enableClientBasedCulture="false" requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8"
responseHeaderEncoding="utf-8" enableBestFitResponseEncoding="true" culture="es-MX" uiCulture="es-MX"/>
and is not working.
all of this is in mexico
my server is Windows server 2003
Regional Settings English (installed 60001 UTF-8)
There's a way to fix this? or how can i know if the problem is in the client side or my side.
Thanks in advance