WebLogic Server Configuration Reference

 Previous Next Contents Index View as PDF  

WebServiceComponent

 


Description

Provides the interface used to configure a Web service that is deployed on a Weblogic Server instance.

A Web service is a special kind of J2EE Web Application that contains an additional deployment descriptor, web-services.xml, that describes the Web service. Because a Web service is packaged as a J2EE Web application, its component MBean is the same as that of a Web application, and thus simply extends the WebAppComponentMBean interface, adding no new methods.

WebLogic Server instantiates this interface only when you deploy a Web service.

This interface can configure Web services that are deployed as WAR files or exploded directories.

 


Syntax

<WebServiceComponent
AuthFilter="String"
AuthRealmName="String"
DeploymentOrder="number"
IndexDirectoryEnabled=( "true" | "false" )
Name="String"
Notes="String"
PreferWebInfClasses=( "true" | "false" )
ServletReloadCheckSecs="number"
SessionMonitoringEnabled=( "true" | "false" )
SingleThreadedServletPoolSize="number"
Targets="list of Target names"
URI="String"
VirtualHosts="list of VirtualHost names"
/>

 


Parent Elements

 


Attributes

Table 68-1 WebServiceComponent attributes

Attribute

Description

Range of Values and Default

AuthFilter

Sets the AuthFilter Servlet class which will be called before and after all authentication and authorization checks in the WebApplication

Required: no

AuthRealmName

Sets the Realm in the Basic Authentication HTTP dialog box which pops up on the browsers

Admin Console field label: Auth Realm Name

Required: no

Default: weblogic

DeploymentOrder

A priority that the server uses to determine when it deploys an item. The priority is relative to other deployable items of the same type. For example, the server prioritizes and deploys all EJBs before it prioritizes and deploys startup classes.

Items with the lowest Deployment Order value are deployed first. There is no guarantee on the order of deployments with equal Deployment Order values. There is no guarantee of ordering across clusters.

Admin Console field label: Deployment Order

Required: no

Default: 1000

Minimum: 0

Maximum: 231-1

IndexDirectoryEnabled

Return whether or not to automatically generate an HTML directory listing if no suitable index file is found

Admin Console field label: Index Directory Enabled

Required: no

Default: false

Name

The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.

Admin Console field label: Name

Required: no

Notes

Optional information that you can include to describe this configuration.

Required: no

PreferWebInfClasses

If true, classes located in the WEB-INF directory of a web-app will be loaded in preference to classes loaded in the application or system classloader.

Required: no

Default: false

ServletReloadCheckSecs

How often WebLogic checks whether a servlet has been modified, and if so reloads it. -1 is never reload, 0 is always reload

Admin Console field label: Servlet Reload Check Secs

Required: no

Default: 1

SessionMonitoringEnabled

If true, then runtime mbeans will be created for sessions, otherwise, they will not.

Admin Console field label: Session Monitoring Enabled

Required: no

Default: false

SingleThreadedServletPoolSize

Defines the size of the pool used for SingleThreadModle instance pools.

Admin Console field label: Single Threaded Servlet Pool Size

Required: no

Default: 5

Targets

The targets in the current domain on which this item can be deployed.

Required: no

URI

Return a URI pointing to the application component, usually on the Admin Server.

Admin Console field label: URI

VirtualHosts

Returns virtual hosts on which this deployment is targeted.

Required: no

 

Back to Top Previous Next