次の方法で共有


AppFabric コマンドレットを使用したサービス メタデータの構成

以下のコマンドレットを使用して、サービス メタデータの構成設定を設定、取得、または消去することができます。

コマンドレット

説明

Get-ASAppServiceMetadata

指定されたスコープに関連付けられている構成ファイル内の serviceMetadata 要素の httpGetEnabled および httpGetUrl 属性の値を取得します。

Set-ASAppServiceMetadata

指定されたスコープに関連付けられている構成ファイルにおいて、serviceMetadata 要素の httpGetEnabled 属性の値を設定します。serviceMetadata 要素が存在しない場合は、コマンドレットがこの要素を追加して httpGetEnabled の値を要素に設定します。

Clear-ASAppServiceMetadata

指定されたスコープに関連付けられている構成ファイルから serviceMetadata 要素を削除します。

Get-ASAppServiceMetadata コマンドレットの構文オプション

// to get service-metadata settings at the root level
Get-ASAppServiceMetadata –root 

// Web site level
Get-ASAppServiceMetadata -SiteName <String>

Example: 
Get-ASAppServiceMetadata –SiteName “Default Web Site” 

// At the level pointed by the virtual path
Get-ASAppServiceMetadata -SiteName <String> -VirtualPath <string>

Examples: 
Get-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath /SampleApp
Get-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx”

// At the level pointed by the URI
Get-ASAppServiceMetadata –Uri <Uri> 

Examples: 
Get-ASAppServiceMetadata –Uri https://localhost
Get-ASAppServiceMetadata –Uri https://localhost/SampleService
Get-ASAppServiceMetadata –Uri https://localhost/SampleService/SampleService.xamlx

// At the application level specified by using the ApplicationObject
Get-ASAppServiceMetadata –ApplicationObject <ApplicationInfo> 

Example: 
Get-ASApplication -SiteName "Default Web Site" -VirtualPath /SampleApp | Get-ASAppServiceMetadata 

// At the service level specified by using the ServiceInfo object
Get-ASAppServiceMetadata –ServiceObject <ServiceInfo>

Example: 
Get-ASAppService –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx” | Get-ASAppServiceMetadata

Set-ASAppServiceMetadata コマンドレットの構文オプション

// to set service-metadata settings at the root level
Set-ASAppServiceMetadata –root –httpGetEnabled <Boolean>

Example:
Set-ASAppServiceMetadata –root –httpGetEnabled 1

// Web site level
Set-ASAppServiceMetadata -SiteName <String> –httpGetEnabled 1

Example: 
Set-ASAppServiceMetadata –SiteName “Default Web Site” –httpGetEnabled 1

// At the level pointed by the virtual path
Set-ASAppServiceMetadata -SiteName <String> -VirtualPath <string> –httpGetEnabled <Boolean>

Examples: 
Set-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath /SampleApp –httpGetEnabled 1
Set-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx” –httpGetEnabled 1

// At the level pointed by the URI
Set-ASAppServiceMetadata –Uri <Uri> –httpGetEnabled <Boolean>

Examples: 
Set-ASAppServiceMetadata –Uri https://localhost –httpGetEnabled 1
Set-ASAppServiceMetadata –Uri https://localhost/SampleService -httpGetEnabled 1
Set-ASAppServiceMetadata –Uri https://localhost/SampleService/SampleService.xamlx -httpGetEnabled 1

// At the application level specified by using the ApplicationObject
Set-ASAppServiceMetadata –ApplicationObject <ApplicationInfo> –httpGetEnabled <Boolean>

Example: 
Get-ASApplication -SiteName "Default Web Site" -VirtualPath /SampleApp | Set-ASAppServiceMetadata –httpGetEnabled 1

// At the service level specified by using the ServiceInfo object
Set-ASAppServiceMetadata –ServiceObject <ServiceInfo> –httpGetEnabled <Boolean>

Example: 
Get-ASAppService –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx” | Set-ASAppServiceMetadata –httpGetEnabled 1

Set-ASAppServiceMetadata コマンドレットに固有のパラメーター

パラメーター 説明

httpGetEnabled

HTTP プロトコルを介してサービスのメタデータにアクセスできるかどうかを指定します。

Clear-ASAppServiceMetadata コマンドレットの構文オプション

// to clear service-metadata settings at the root level
Clear-ASAppServiceMetadata –root 

// Web site level
Clear-ASAppServiceMetadata -SiteName <String>

Example: 
Clear-ASAppServiceMetadata –SiteName “Default Web Site” 

// At the level pointed by the virtual path
Clear-ASAppServiceMetadata -SiteName <String> -VirtualPath <string>

Examples: 
Clear-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath /SampleApp 
Clear-ASAppServiceMetadata –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx” 

// At the level pointed by the URI
Clear-ASAppServiceMetadata –Uri <Uri> 

Examples: 
Clear-ASAppServiceMetadata –Uri https://localhost
Clear-ASAppServiceMetadata –Uri https://localhost/SampleService
Clear-ASAppServiceMetadata –Uri https://localhost/SampleService/SampleService.xamlx

// At the application level specified by using the ApplicationObject
Clear-ASAppServiceMetadata –ApplicationObject <ApplicationInfo> 

Example: 
Get-ASApplication -SiteName "Default Web Site" -VirtualPath /SampleApp | Clear-ASAppServiceMetadata 

// At the service level specified by using the ServiceInfo object
Clear-ASAppServiceMetadata –ServiceObject <ServiceInfo>

Example: 
Get-ASAppService –SiteName “Default Web Site” –VirtualPath “/SampleApp/SampleService.xamlx” | Clear-ASAppServiceMetadata

  2011-12-05