Package org.codehaus.xfire.services

Examples of org.codehaus.xfire.services.SimpleBean


       
        Object[] response = client.invoke("getSimpleBean", new Object[] {});
        assertNotNull("response from client invoke is null", response);
        assertEquals("unexpected array size in invoke response", 1, response.length);
       
        SimpleBean res = (SimpleBean) response[0];
        assertEquals("bleh", res.getBleh());
    }
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.services.SimpleBean

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.