Examples of AnyContentType


Examples of org.apache.axis2.addressing.AnyContentType

    }

    public void testHeaderCreationFromMsgCtxtInformation() throws Exception {
        msgCtxt = new MessageContext(null);

        AnyContentType referenceValues = new AnyContentType();

        EndpointReference epr = new EndpointReference("http://www.from.org/service/");
        referenceValues.addReferenceValue(new QName("Reference2"),
                "Value 200");
        epr.setReferenceParameters(referenceValues);
        msgCtxt.setFrom(epr);

        epr = new EndpointReference("http://www.to.org/service/");
        referenceValues = new AnyContentType();
        referenceValues.addReferenceValue(
                new QName("http://reference.org", "Reference4", "myRef"),
                "Value 400");
        referenceValues.addReferenceValue(
                new QName("http://reference.org", "Reference3", "myRef"),
                "Value 300");
        epr.setReferenceParameters(referenceValues);

        epr.setServiceName(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.