⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dispatchservicehandler.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.handler;import org.codehaus.xfire.MessageContext;import org.codehaus.xfire.exchange.OutMessage;import org.codehaus.xfire.fault.XFireFault;import org.codehaus.xfire.soap.handler.SoapBodyHandler;import org.codehaus.xfire.transport.DefaultEndpoint;/** * Reads in the message body using the service binding. *  * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> */public class DispatchServiceHandler    extends AbstractHandler{    public DispatchServiceHandler()    {        super();        setPhase(Phase.DISPATCH);        after(SoapBodyHandler.class.getName());    }    public void invoke(MessageContext context)        throws XFireFault    {        Boolean b = (Boolean) context.getProperty(DefaultEndpoint.SERVICE_HANDLERS_REGISTERED);        if ((b == null || b.equals(Boolean.FALSE)) && context.getService() != null)        {            context.getInPipeline().addHandlers(context.getService().getInHandlers());        }                if (context.getExchange().hasOutMessage())        {            HandlerPipeline pipeline = new HandlerPipeline(context.getXFire().getOutPhases());            pipeline.addHandlers(context.getService().getOutHandlers());            pipeline.addHandlers(context.getXFire().getOutHandlers());            OutMessage msg = context.getExchange().getOutMessage();            pipeline.addHandlers(msg.getChannel().getTransport().getOutHandlers());            context.setOutPipeline(pipeline);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -