Examples of IF2SOAP


Examples of test.rpc.IF2SOAP

        }
    }

    public void testGetBeansByExpression() {
        try {
            IF2SOAP soap = m_soap;
            IF1[] beans = soap.getBeansByExpression(IF2SOAP.KEYWORD_EXP, "keyword");
            assertNotNull("beans is null", beans);
            System.out.println("beansByExpression:");
            for (int i = 0; i < beans.length; i++)
                System.out.println("id[" + i + "]: " + beans[i].getId());
        } catch (Exception e) {
View Full Code Here

Examples of test.rpc.IF2SOAP

        }
    }

    public void testGetBeansByExpressionFiltered() {
        try {
            IF2SOAP soap = m_soap;
            String[] filter = new String[1];
            filter[0] = "11011011011";
            IF1[] beans = soap.getBeansByExpression(IF2SOAP.KEYWORD_EXP, "keyword", filter);
            assertNotNull("beans is null", beans);
            System.out.println("beansByExpressionFiltered:");
            for (int i = 0; i < beans.length; i++)
                System.out.println("id[" + i + "]: " + beans[i].getId());
        } catch (Exception e) {
View Full Code Here

Examples of test.rpc.IF2SOAP

        }
    }

    public void testGetXMLForBean() {
        try {
            IF2SOAP soap = m_soap;
            IF1 bean = soap.getBeanById("42042042042");
            String xml = soap.getXMLForBean(bean);
            assertNotNull("xml is null", xml);
            System.out.println("xmlForBean:");
            System.out.println("xml: " + xml);
        } catch (Exception e) {
            e.printStackTrace();
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.