FileDocCategorySizeDatePackage
Compound2TestCase.javaAPI DocApache Axis 1.43632Sat Apr 22 18:57:26 BST 2006test.wsdl.interop3.compound2

Compound2TestCase

public class Compound2TestCase extends TestCase

Fields Summary
static URL
url
Constructors Summary
public Compound2TestCase(String name)

        super(name);
    
Methods Summary
public static voidmain(java.lang.String[] args)

        if (args.length == 1) {
            try {
                url = new URL(args[0]);
            } catch (Exception e) {
            }
        }

        junit.textui.TestRunner.run(new junit.framework.TestSuite(Compound2TestCase.class));
    
java.lang.StringprintEmployee(test.wsdl.interop3.compound2.xsd.Employee e)

        String result = new String();
        
        result += " ID: " + e.getID() + "\r\n";
        result += " Salary: " + e.getSalary() + "\r\n";
        Person p = e.getPerson();
        result += " Person:\r\n";
        result += "  Name: " + p.getName() + "\r\n";
        result += "  Male: " + p.isMale() + "\r\n";
        
        return result;
    
protected voidsetUp()

    
public voidtestStep3()

        SoapInteropCompound2PortType binding;
        try {
            if (url != null) {
                binding = new Compound2Locator().getSoapInteropCompound2Port(url);
            } else {
                binding = new Compound2Locator().getSoapInteropCompound2Port();
            }
        }
        catch (javax.xml.rpc.ServiceException jre) {
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            Employee emp = new Employee();
            Person person = new Person();
            person.setMale(true);
            person.setName("Joe Blow");
            emp.setPerson(person);
            emp.setID(314159);
            emp.setSalary(100000.50);
            
            Employee result = binding.echoEmployee(emp);

            if (!emp.equals(result)) {
                System.out.println("Expected:");
                System.out.println(printEmployee(emp));
                System.out.println("Received:");
                System.out.println(printEmployee(result));
            }
            assertTrue("Results did not match", result.equals(emp));

        }
        catch (java.rmi.RemoteException re) {
            throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re);
        }