- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
C# AIM code and non-englis h character
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-10-2009 12:50 PM
I use the C# sample posting code from the developer website, it works for all-english address. However, when I use non-english addresses like Montréal, it throws
Bytes to be written to the stream exceed the Content-Length bytes size specified.
when calling
myWriter.Write(strPost);
---> myWriter.Flush(); // throw exception
what I found out is the sample code using strPost.Length as HttpWebRequest.ContentLength, but non-english characters count more than 1 in stream. I tried other method,
like use
byte[] buffer = System.Text.Encoding.UTF8.GetBytes(strPost);
objRequest.ContentLength = buffer.Length;
...
myWriter =
new StreamWriter(objRequest.GetRequestStream(), System.Text.Encoding.UTF8);
myWriter.Write(buffer);
myWriter.Close();
I got Cannot close stream until all bytes are written.
So I wonder what's the correct code should be.
Re: C# AIM code and non-englis h character
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-18-2009 01:47 PM
Hey chengbao,
Unfortunately, non-English characters are not allowed in any of our APIs. Try submitting the request with standard English characters and see if that works.
Thanks,
Michelle
Developer Community Manager
Re: C# AIM code and non-englis h character
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-07-2011 05:25 AM
Michelle -
Can you please provide sample code on how to handle International Address? Or Should we not pass the address if the country is outside US and Canada?
Please help as we are having trouble with international customers trying to checkout.
Thanks
TechMate
