All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testutil.benchmark.SimpleHandler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2018, 2022 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*
 * $Id: SimpleHandler.java,v 1.1 2005/10/07 22:46:07 kk122374 Exp $
 */

package testutil.benchmark;

import java.util.Set;

import javax.xml.namespace.QName;
import jakarta.xml.ws.handler.soap.SOAPHandler;
import jakarta.xml.ws.handler.MessageContext;
import jakarta.xml.ws.handler.soap.SOAPMessageContext;
import jakarta.xml.soap.SOAPBody;
import jakarta.xml.soap.SOAPEnvelope;
import jakarta.xml.soap.SOAPException;
import jakarta.xml.soap.SOAPMessage;
import jakarta.xml.soap.SOAPPart;

/**
 * @author JAX-RPC RI Development Team
 */
public class SimpleHandler implements SOAPHandler {
   
    private static final boolean dosomething = true;
    
    public SimpleHandler() {}

    @Override
    public Set getHeaders() {
        return null;
    }

    @Override
    public boolean handleMessage(SOAPMessageContext context) {
        doSomeWork(context);
        return true;
    }

    @Override
    public boolean handleFault(SOAPMessageContext context) {
        doSomeWork(context);
        return true;
    }

    protected void doSomeWork(SOAPMessageContext context) {
        if (dosomething) {
            try {
                SOAPMessage message = context.getMessage();
                SOAPPart sp = message.getSOAPPart();
                SOAPEnvelope se = sp.getEnvelope();
                SOAPBody sb = se.getBody();
            } catch (SOAPException e) {
                e.printStackTrace();
            }
        }

    }

    @Override
    public void close(MessageContext messageContext) {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy