You need to specify the handler in deploy.wsdd, something like the following
<requestFlow>
<handler type="java:org.apache.axis.handlers.JAXRPCHandler">
<parameter name="scope" value="session"/>
<parameter name="className" value="samples.jaxrpc.hello.ClientHandler"/>
</handler>
</requestFlow>
<responseFlow>
<handler type="java:org.apache.axis.handlers.JAXRPCHandler">
<parameter name="scope" value="session"/>
<parameter name="className" value="samples.jaxrpc.hello.ClientHandler"/>
</handler>
</responseFlow>
You can refer to the samples/jaxrpc
--venkat
On 7/12/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Thank your reply.I have try that with making use of Axis's own Handler
> interface,it's ok!
> But now,I alse want to try the JAX-RPC handler implementing
> javax.xml.rpc.handler.Handler interface,
> Who does this?I'm very appreciate with your help!
>
> Best Regards,
>
> Robert Zhang
> Email:[EMAIL PROTECTED]
> Tel:86-010-62014411-2437
>
> ----- 原邮件 -----
> 从: Dong Liu <[EMAIL PROTECTED]>
> 日期: 星期二, 七月 12日, 2005 上午9:13
> 主题: Re: How to configure and deploy JAX-RPC handler in Axis?
>
> > Axis has its own Handler interface. No idea about the difference
> > between axis handler and javax handler. Anyway, you can first try to
> > deploy the handler like axis handler, and then see if it work, and
> > what is the error.
> >
> > Cheers,
> >
> > Don
> >
> > On 7/11/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > > Hi all
> > > I have wrote a handler class implement the
> > javax.xml.rpc.handler.Handler interface.But I don't know how to
> > > configure and deploy it at the server side in Axis.I know the
> > Axis is compliant with JAX-RPC specification and should be surport it.
> > >
> > > Thanks in advance:)
> > >
> > >
> > > Best Regards,
> > >
> > > Robert Zhang
> > > Email:[EMAIL PROTECTED]
> > > Tel:86-010-62014411-2437
> > >
> > >
> >
>
>