TestSOAPHandler.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.cxf.systest.provider;


import java.util.Iterator;
import java.util.Set;

import javax.xml.namespace.QName;

import jakarta.xml.soap.SOAPBody;
import jakarta.xml.soap.SOAPElement;
import jakarta.xml.soap.SOAPEnvelope;
import jakarta.xml.soap.SOAPMessage;
import jakarta.xml.ws.handler.MessageContext;
import jakarta.xml.ws.handler.soap.SOAPHandler;
import jakarta.xml.ws.handler.soap.SOAPMessageContext;


public class TestSOAPHandler implements SOAPHandler<SOAPMessageContext> {
    public boolean handleMessage(SOAPMessageContext ctx) {
        try {
            SOAPMessage msg = ctx.getMessage();
            /*
             * System.out.println("-----------soap---------");
             * msg.writeTo(System.out);
             * System.out.println("-----------soap---------");
             */

            SOAPEnvelope env = msg.getSOAPPart().getEnvelope();
            SOAPBody body = env.getBody();
            Iterator<?> it = body.getChildElements();
            while (it.hasNext()) {

                Object elem = it.next();
                if (elem instanceof SOAPElement) {

                    Iterator<?> it2 = ((SOAPElement)elem).getChildElements();
                    while (it2.hasNext()) {
                        Object elem2 = it2.next();
                        if (elem2 instanceof SOAPElement) {
                            String value = ((SOAPElement)elem2).getValue();
                            if (value != null
                                && (value.indexOf("Milestone-0") >= 0
                                || value.indexOf("TestGreetMeResponseServerLogicalHandler") >= 0)) {
                                value = value + "ServerSOAPHandler";
                                ((SOAPElement)elem2).setValue(value);
                            }
                        }
                    }
                }
            }
            msg.saveChanges();

            /*
             * System.out.println("-----------soapaf---------");
             * msg.writeTo(System.out);
             * System.out.println("-----------soapaf---------");
             */
        } catch (Exception e) {
            e.printStackTrace();
        }

        return true;
    }
    public final Set<QName> getHeaders() {
        return null;
    }
    public boolean handleFault(SOAPMessageContext ctx) {
        return true;
    }
    public void close(MessageContext arg0) {
    }
}