Package org.objectweb.header_test.types

Examples of org.objectweb.header_test.types.TestHeader1


        //Test The InputMessage of testHeader1 Operation
        soapContext.put(ObjectMessageContext.MESSAGE_INPUT, false);
        Method testHeader1 = SOAPMessageUtil.getMethod(TestHeader.class, "testHeader1");
        assertNotNull(testHeader1);
        objContext.setMethod(testHeader1);
        Object arg = new TestHeader1();
        objContext.setMessageObjects(arg, arg);

        binding.marshal(
                   objContext,
                   soapContext,
View Full Code Here


        proxy = null;
    }
   
    public void testInHeader() throws Exception {
        try {
            TestHeader1 val = new TestHeader1();
            for (int idx = 0; idx < 2; idx++) {
                TestHeader1Response returnVal = proxy.testHeader1(val, val);
                assertNotNull(returnVal);
                assertEquals(TestHeader1.class.getSimpleName(), returnVal.getResponseType());
            }
View Full Code Here

TOP

Related Classes of org.objectweb.header_test.types.TestHeader1

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.