The Live Meeting Service is localized for 8 languages including English. There are many strings that will only accept ASCII characters (like password and userID). However, there are other strings that will accept non-ASCII characters.
The Live Meeting Manager web interface allows you to enter non-ASCII characters where they are supported.The Live Meeting XML API requires a different encoding for non-ASCII characters. The encoding expected by the APIs has the from &#xHHHH; where 'H' is a hexadecimal digit. This encoding can be used for single-byte or multi-byte characters. The hexadecimal value for the character can vary depending on the character set used to display that character.
The following options are allowed to contain non-ASCII characters.
Here are some example name with example encodings:
Name XML encodingGöktug Oguz Göktug OguzJózsef Kránitz József KránitzJosé Saraiva José SaraivaFrancisco Javier Castrejón Francisco Javier CastrejónStefan Rißling Stefan RißlingKálmán Béres Kálmán BéresRalf Riethmüller Ralf RiethmüllerAnders B. Skjønaa Anders B. Skjønaa
API Example
<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
<ModifyUserRequest userID="jkranitz">
<OptionList>
<StringOption name="firstName" value="József" />
<StringOption name="lastName" value="Kránitz" />
</OptionList>
</ModifyUserRequest>
</PlaceWareConfCenter>
For more information about XML character encoding, see the following documentation:
Extensible Markup Language (XML) 1.0 (Third Edition)Section 2.2 Charactershttp://www.w3.org/TR/2004/REC-xml-20040204/#charsets
Sean D. WheelerEscalation Team LeadMicrosoft Office Live Meeting