up:userProperties

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Represents the user properties received as the server in-band provisioning.

Syntax

<up:userProperties 
    xmlns:up="http://schemas.microsoft.com/2006/09/sip/categories">
  <up:msExchAssistantName>...</up:msExchAssistantName>
  <up:facsimileTelephoneNumber>...</up:facsimileTelephoneNumber>
  <up:streetAddress>...</up:streetAddress>
  <up:l>...</up:l>
  <up:st>...</up:st>
  <countryCode>...</countryCode>
  <up:postalCode>...</up:postalCode>
  <up:wWWHomePage>...</up:wWWHomePage>
  <up:exumEnabled>...</up:exumEnabled>
  <up:telephonyMode>...</up:telephonyMode>
  <up:lines>
    <up:line>...</up:line>
  </up:lines>
</up:userProperties>

Attributes

Attribute Data Type Description

xmlns

url

The namespace to which this element belongs. The value must be "http://schemas.microsoft.com/2006/09/sip/categories".

majorVersion

int

Major version number of this information.

minorVersion

int

Minor version number of this information.

Parent Element

This is a top-level element in the Enhanced Presence Schemas. In applications, it will be enveloped within an application-specific parent element.

Child Elements

Element Occurrence Description

up:countryCode

0 - 1

The country code.

up:exumEnabled

0 - 1

This contains bit flags. For example, the bit 0x0001 indicates that Voicemail enabled.

up:exumURL

0 or 1

URL of the Exchange Unified Messaging service.

up:facsimileTelephoneNumber

0 - 1

The Fax number.

up:forwardingUrls

0 - 1

The forwarding URL.

up:l

0 - 1

The city in the address.

up:lines

0 - 1

A description of phone lines controlled by this user.

up:postalCode

0 - 1

The postal code in the address.

up:st

0 - 1

The state or province in the address.

up:streetAddress

0 - 1

The street address.

up:telephonyMode

0 - 1

The mode can be one of following tokens: None, Uc, Rcc, or Dual.

up:wWWHomePage

0 - 1

The user's web site address.

Remarks

Examples

XML Example the userProperties Element

<cwaCategory name="userProperties" instance="0" version="8" publishTime="2007-11-01T16:43:59Z">
  <userProperties xmlns="http://schemas.microsoft.com/2006/09/sip/categories">
    <facsimileTelephoneNumber>1234567890</facsimileTelephoneNumber>
    <streetAddress>123 Any Street</streetAddress>
    <l>Redmond</l>
    <st>WA</st>
    <countryCode>US</countryCode>
    <postalCode>98223</postalCode>
    <wWWHomePage>http://admin.contoso.com</wWWHomePage>
    <exumEnabled>1</exumEnabled>   
    <telephonyMode>Dual</telephonyMode>
    <lines>
      <line lineType="Dual">tel:+5555555555;ext=55555</line>
    </lines>
  </userProperties>
</cwaCategory>