|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
SoapReceiver.deploy()
should only be called once for each configured SoapReceiver.
AxisEngine.init()
.
AxisEngine.init()
.
SoapReceiver.undeploy()
JavaProvider.initServiceDesc(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext)
, but we override that, so it's never called.
JavaProvider.invoke(org.apache.axis.MessageContext)
, and from JavaProvider.initServiceDesc(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext)
(but we override that here).
JavaProvider.getServiceClassName(org.apache.axis.Handler)
(but we override that here), and from
JavaProvider.invoke(org.apache.axis.MessageContext)
if ObjectRPCProvider.getServiceClassName(org.apache.axis.Handler)
returns null or "" (and that can't happen).
JavaProvider.invoke(org.apache.axis.MessageContext)
SOAPService.getInitializedServiceDesc(org.apache.axis.MessageContext)
, which in turn is called from many places.
JavaProvider
s, that does not create the service object but always uses the same instance.SoapReceiver.deploy()
will throw an IllegalArgumentException
.
Style.RPC
.
Use.ENCODED
.
EngineConfiguration
s.SoapConfiguration
, adds ability to deploy / undeploy services and a few property setters.Handler
with a URLMapper
.
SoapConfiguration.configureEngine(org.apache.axis.AxisEngine)
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |