This is my client-config.wsdd file
<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<handler name="JMSSender"
type="java:org.apache.axis.transport.jms.JMSSender"/>
<service name="AttachmentService" provider="java:RPC">
<requestFlow>
<handler name="SimpleSessionHandler"
type="java:org.apache.axis.handlers.SimpleSessionHandler"/>
<handler name="CipherAttachmentHandler"
type="java:com.bcsis.messaging.axis.handlers.CipherAttachmentHandler"/>
<handler name="ZipAttachmentHandler"
type="java:com.bcsis.messaging.axis.handlers.ZipAttachmentHandler">
<parameter name="WithCipher" value="TRUE"/>
</handler>
</requestFlow>
<responseFlow>
<handler name="ZipAttachmentHandler"
type="java:com.bcsis.messaging.axis.handlers.ZipAttachmentHandler">
<parameter name="WithCipher" value="TRUE"/>
</handler>
<handler name="CipherAttachmentHandler"
type="java:com.bcsis.messaging.axis.handlers.CipherAttachmentHandler"/>
<handler name="SimpleSessionHandler"
type="java:org.apache.axis.handlers.SimpleSessionHandler"/>
</responseFlow>
</service>
<transport name="local"
pivot="java:org.apache.axis.transport.local.LocalSender"/>
<transport name="JMSTransport" pivot="JMSSender"/>
<transport name="http"
pivot="java:org.apache.axis.transport.http.HTTPSender"/>
<transport name="java"
pivot="java:org.apache.axis.transport.java.JavaSender"/>
</deployment>
when i invoked the 'AttachmentService', handlers are not invoked at all for
both request and response flow.
The handlers are only invoked when i specified them in
<globalConfiguration> tag.
Any clues ?
Thanks,
Beoh
> Hi,
>
> At the AXIS client side, can i specify service-specific handlers in
> client- config.wsdd instead of specifying the handlers to be invoked at
> the <globalConfiguration> tag ?
>
> thanks,
> Beoh