Updates the user profile of the specified user.

Syntax

Visual Basic (declaration)
Public Function UpdateUserProfile( _ 
ByVal AuthenticationTicket as String, _ ByVal UserName as String, _ ByVal NewUserName as String, _ ByVal NewFirstName as String, _ ByVal NewUserName as String, _ ByVal AuthenticateSource as String) as XmlNode

C# (declaration)
public XmlNode UpdateUserProfile( 
string AuthenticationTicket, string UserName, string NewUserName, string NewFirstName, string NewUserName, string AuthenticateSource)

Parameters

AuthenticationTicket
    string inforouter ticket
UserName
    string The username of the user to be updated
NewUserName
    string A new user name
NewFirstName
    string New First Name
NewUserName
    string New Last Name
AuthenticateSource
    string if the user is autheticated by infoRouter the value must be 'INFOROUTER'. Elseif the value must be the authentication sources specified in web.config

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the User Profile has been updated successfully.
if success attribute is "false", the error attribute indicates the encountered error.

Remarks

The caller must be the system administrator or a domain manager of the domain in which the user is a local member.