|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.soap.server.RequestContext
RequestContext
defines all of the context for a SOAP request, including information that is passed to the provider and information that the provider must set before returning. Note that the provider is given the request Envelope
and is therefore responsible to unmarshall the request parameters. Similarly, the provider is required to marshall the response, although the response envelope must also be set by the provider, as it may be needed by a pluggable handler.
The following information is provided by the SOAP engine to the Provider
, meaning that the provider can utilize this information in Provider.invoke
:
The following information must be given by the Provider
to the SOAP engine:
Constants.NS_URI_SOAP_ENC
, which is SOAP encoding). If the provider cares about this, it should set this value as soon as it can in case of an exception. The provider might use the same encoding as the request or as one of the parameters.Constructor Summary | |
RequestContext() |
Method Summary | |
java.lang.String |
getMethodName() Get the method name for this SOAP request. |
java.lang.String |
getRequestEncodingStyle() Get the encoding style that was used on the request. |
Envelope |
getRequestEnvelope() Get the envelope that represents the actual SOAP request. |
OracleSOAPContext |
getRequestSOAPContext() Get the Oracle extended SOAPContext for this SOAP request. |
Envelope |
getResponseEnvelope() Get the envelope that represents the SOAP response. |
SOAPMappingRegistry |
getResponseMap() Get the mapping registry that must be used to serialize the SOAP response. |
OracleSOAPContext |
getResponseSOAPContext() Get the Oracle extended SOAPContext for the response to this SOAP request. |
java.lang.String |
getServiceId() Get the service id (URI) for this SOAP request. |
void |
setMethodName(java.lang.String methodName) Set the method name for this SOAP request. |
void |
setRequestEncodingStyle(java.lang.String requestEncodingStyle) Set the encoding style that was used on the request. |
void |
setRequestEnvelope(Envelope envelope) Set the envelope that represents the actual SOAP request. |
void |
setRequestSOAPContext(OracleSOAPContext soapContext) Set the Oracle extended SOAPContext for this SOAP request. |
void |
setResponseEnvelope(Envelope envelope) Set the envelope that represents the SOAP response. |
void |
setResponseMap(SOAPMappingRegistry smr) Set the mapping registry that must be used to serialize the SOAP response envelope. |
void |
setResponseSOAPContext(OracleSOAPContext soapContext) Set the Oracle extended SOAPContext for the response to this SOAP request. |
void |
setServiceId(java.lang.String serviceId) Set the service id (URI) for this SOAP request. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public RequestContext()
Method Detail |
public void setRequestEnvelope(Envelope envelope)
envelope
- The SOAP envelope.public Envelope getRequestEnvelope()
public void setRequestSOAPContext(OracleSOAPContext soapContext)
soapContext
- The SOAP context.public OracleSOAPContext getRequestSOAPContext()
public void setResponseEnvelope(Envelope envelope)
envelope
- The SOAP response envelope.public Envelope getResponseEnvelope()
public void setResponseMap(SOAPMappingRegistry smr)
smr
- The mapping registry for the SOAP response envelope.public SOAPMappingRegistry getResponseMap()
public void setResponseSOAPContext(OracleSOAPContext soapContext)
soapContext
- The SOAP context.public OracleSOAPContext getResponseSOAPContext()
public void setRequestEncodingStyle(java.lang.String requestEncodingStyle)
requestEncodingStyle
- The request encoding style.public java.lang.String getRequestEncodingStyle()
public void setMethodName(java.lang.String methodName)
methodName
- The method name that is being invoked in the service.public java.lang.String getMethodName()
public void setServiceId(java.lang.String serviceId)
serviceId
- The URI for the service to which this request is directed.public java.lang.String getServiceId()
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |