Package com.sun.xml.internal.ws.api.ha

Examples of com.sun.xml.internal.ws.api.ha.HaInfo


        }
    }

    private void addReplicaCookie(WSHTTPConnection con, Packet packet) {
        if (stickyCookie) {
            HaInfo haInfo = null;
            if (packet.supports(Packet.HA_INFO)) {
                haInfo = (HaInfo)packet.get(Packet.HA_INFO);
            }
            if (haInfo != null) {
                con.setCookie("METRO_KEY", haInfo.getKey());
                con.setCookie("JREPLICA", haInfo.getReplicaInstance());
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.xml.internal.ws.api.ha.HaInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.