[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Re: Passing Unicode String as Web Method Parameter

Ben

7/9/2003 8:50:00 PM

All web requests and responses by default under ASP.NET are sent as unicode
and are encoded as unicode UTF8.

This can be changed in the web.config file if you see globalization element
at the very bottom.


"Vineet Kumar" <vineet.kum@wipro.com> wrote in message
news:771401c34496$3397b7b0$a401280a@phx.gbl...
> Hi,
>
> I have created web service having a web method with
> string parameter. I have string which I got by calling
> Unicode.GetString(). When I try to pass the string I get
> SOAP error.
> Can any one help me to know how to pass Unicode string to
> a web method. Or how to specify the encoding for the web
> service in Visual Studio .NET.