metaData (External Application)

Applies to: SharePoint Foundation 2010

Identifying data about the external application and the user account under which it logs on to the Web site.

applicationParts (External Application)
  applicationPart (External Application)
    metaData (External Application)

<metaData> ... </metaData>

Complex

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None.

Child Elements

Element

Description

applicationId

A GUID that identifies the external application.

applicationUrl

The full URL of the external application, such as the *.xap file of a Silverlight application.

principal

The domain and name of the user account under which the external application will log on to the Web site.

sharepointRequestHandlerUrl

Specifies the URL of a Web service that will forward requests from the external application to the Microsoft SharePoint Foundation front-end Web server.

Parent Elements

Element

Description

applicationPart

Provides information about an external application that needs to access data on lists in a SharePoint Foundation deployment.

Remarks

There is exactly one <metaData> element.

Example

The following markup shows this element in use.

<?xml version='1.0' encoding='utf-16'?>
<applicationParts xmlns='https://schemas.microsoft.com/sharepoint/2009/fluidapp'>
  <applicationPart>
    <metaData>
      <applicationId>00000000-0000-0000-0000-000000000000</applicationId>
      <applicationUrl>https://www.contoso.com/someapplication.xap</applicationUrl>
      <principal>domain\username</principal>
      <sharepointRequestHandlerUrl>/sp.ashx</sharepointRequestHandlerUrl>
    </metaData>
    <data>
      <webPartProperties>
        <property name='Title'>Title</property>
        <property name='Description'>Description</property>
        <property name='WindowlessMode'>TRUE</property>
        <property name='Height'>200px</property>
        <property name='Width'>100px</property>
        <property name='HelpUrl'>https://www.contoso.com/someapplication/help.aspx</property>
        <property name='HelpMode'>Modal</property>
        <property name='Direction'>NotSet</property>
        <property name='MinRuntimeVersion'>3.0</property>
      </webPartProperties>
      <customProperties>
        <property name='CustomPropertyName'>CustomPropertyInfo</property>
      </customProperties>
    </data>
  </applicationPart>
</applicationParts>

Element Information

Namespace

https://schemas.microsoft.com/sharepoint/2009/fluidapp

Schema Name

FluidAppSettings

Validation File

Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\XML\FluidApplicationSettings.xsd

Can be Empty

No