Hi All:
I try to calling a Web service with parameter . It's working fine with encoding type Ascii , but it doesn't work when i use utf8 which getting error code 500 (Inernal service error )and why? how could i fix it?
stream := stream.StreamWriter(Request.GetRequestStream(), ascii.ASCII); ok
//stream := stream.StreamWriter(Request.GetRequestStream(), ascii.utf8); error 500
stream.Write(xml);
stream.Close();
0
Answers