|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WebServiceManager
Manager for the WebService objects.
Field Summary | |
---|---|
static java.lang.String |
copyright
|
Method Summary | |
---|---|
WebService |
createWebService(java.lang.String webServiceName,
java.lang.String description,
Document wsdlDoc,
WebService.MessageStyle messageStyle,
Document implementationScript)
Creates a new web service with the script that implements the service |
WebService |
createWebService(java.lang.String webServiceName,
java.lang.String description,
Document wsdlDoc,
WebService.MessageStyle messageStyle,
Document implementationScript,
boolean storeIncoming,
boolean storeOutgoing,
boolean deployed,
boolean authenticationRequired,
boolean skipRequestValidation,
boolean skipResponseValidation)
Creates a new web service with the script that implements the service |
WebService |
createWebServiceUsingJava(java.lang.String webServiceName,
java.lang.String description,
Document wsdlDoc,
Document wsddDoc,
WebService.MessageStyle messageStyle,
java.lang.String implementingClass)
Creates a new java web service. |
WebService |
createWebServiceUsingJava(java.lang.String webServiceName,
java.lang.String description,
Document wsdlDoc,
Document wsddDoc,
WebService.MessageStyle messageStyle,
java.lang.String implementingClass,
boolean storeIncoming,
boolean storeOutgoing,
boolean deployed,
boolean authenticationRequired,
boolean skipRequestValidation,
boolean skipResponseValidation)
Creates a new java web service. |
WebService |
getWebService(java.lang.String webServiceName)
Returns the web service with the given name. |
java.util.Collection<WebService> |
getWebServices()
Retrieves all web services available in the current context |
Methods inherited from interface com.ibm.pim.common.Manager |
---|
getManagerName |
Field Detail |
---|
static final java.lang.String copyright
Method Detail |
---|
WebService getWebService(java.lang.String webServiceName)
webServiceName
- The name of the webservice.
PIMInternalException
- If an internal error occurs.
PIMAuthorizationException
- Reserved for future use
java.lang.IllegalArgumentException
- If webServiceName is null or an empty stringWebService createWebService(java.lang.String webServiceName, java.lang.String description, Document wsdlDoc, WebService.MessageStyle messageStyle, Document implementationScript)
webServiceName
- The name of the new webservice.description
- Description of the new webservice.wsdlDoc
- The WSDL Document object.messageStyle
- The message style for the web service.implementationScript
- The Document object which represents the service
implementation script.
PIMInternalException
- If an internal error occurs.
PIMAuthorizationException
- Reserved for future use
java.lang.IllegalArgumentException
- If webServiceName is null or an empty string or wsdlDoc or
messageStyle or implementationScript is nullWebService createWebService(java.lang.String webServiceName, java.lang.String description, Document wsdlDoc, WebService.MessageStyle messageStyle, Document implementationScript, boolean storeIncoming, boolean storeOutgoing, boolean deployed, boolean authenticationRequired, boolean skipRequestValidation, boolean skipResponseValidation)
webServiceName
- The name of the new webservice.description
- Description of the new webservice.wsdlDoc
- The WSDL Document object.messageStyle
- The message style for the web service.implementationScript
- The Document object which represents the webservice
implementation script.storeIncoming
- Determines whether incoming request are stored. If true,the
incoming messages for this web service will be stored.storeOutgoing
- Determines whether outgoing response are stored. If true, the
outgoing messages for this web service will be stored.deployed
- Determines whether the service will be deployed. If true, the
web service will be deployedauthenticationRequired
- Determines whether a username, company name, and password are
required to invoke this web service. If true, the web service
requires an authentication.skipRequestValidation
- Determines whether the inbound message is validated against
WSDL schema. If true, the inbound messages will not be
validated against WSDL schema.skipResponseValidation
- determines whether the outbound message is validated against
WSDL schema. If true, the outbound message will not be
validated against WSDL schema.
PIMInternalException
- If an internal error occurs.
PIMAuthorizationException
- Reserved for future use
java.lang.IllegalArgumentException
- If webServiceName is null or an empty string or wsdlDoc or
messageStyle or implementationScript is null or the
messageStyle is
WebService.MessageStyle.RPC_ENCODED
and the value for skipRequestValidation or
skipResponseValidation is trueWebService createWebServiceUsingJava(java.lang.String webServiceName, java.lang.String description, Document wsdlDoc, Document wsddDoc, WebService.MessageStyle messageStyle, java.lang.String implementingClass)
webServiceName
- The name of the new webservice.description
- Description of the new webservice.wsdlDoc
- The WSDL Document object.wsddDoc
- The WSDD Document object.messageStyle
- The message style for the web service.implementingClass
- Java class which implements the service.
PIMInternalException
- If an internal error occurs.
PIMAuthorizationException
- Reserved for future use
java.lang.IllegalArgumentException
- If webServiceName is null or an empty string or wsdlDoc or
wsddDoc or messageStyle is null or implementingClass is null
or an empty stringWebService createWebServiceUsingJava(java.lang.String webServiceName, java.lang.String description, Document wsdlDoc, Document wsddDoc, WebService.MessageStyle messageStyle, java.lang.String implementingClass, boolean storeIncoming, boolean storeOutgoing, boolean deployed, boolean authenticationRequired, boolean skipRequestValidation, boolean skipResponseValidation)
webServiceName
- The name of the new webservice.description
- Description of the new webservice.wsdlDoc
- The WSDL Document object.wsddDoc
- The WSDD Document object.messageStyle
- The message style for the web service.implementingClass
- Java class which implements the service.storeIncoming
- Determines whether incoming request are stored. If true,the
incoming messages for this web service will be stored.storeOutgoing
- Determines whether outgoing response are stored. If true, the
outgoing messages for this web service will be stored.deployed
- Determines whether the service will be deployed. If true, the
web service will be deployedauthenticationRequired
- Determines whether a username, company name, and password are
required to invoke this web service. If true, the web service
requires an authentication.skipRequestValidation
- Determines whether the inbound message is validated against
WSDL schema. If true, the inbound messages will not be
validated against WSDL schema.skipResponseValidation
- Determines whether the outbound message is validated against
WSDL schema. If true, the outbound message will not be
validated against WSDL schema.
PIMInternalException
- If an internal error occurs.
PIMAuthorizationException
- Reserved for future use
java.lang.IllegalArgumentException
- If webServiceName is null or an empty string or wsdlDoc or
wsddDoc or messageStyle is null or implementingClass is null
or an empty string or the messageStyle is
WebService.MessageStyle.RPC_ENCODED
and the value for skipRequestValidation or
skipResponseValidation is truejava.util.Collection<WebService> getWebServices()
PIMInternalException
- If an internal error occurs
PIMAuthorizationException
- Reserved for future use
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |