import MyService.*;

public class Test {

    public static void main(String args[]) throws Exception {
        CompositeType p0 = new CompositeType();
        p0.setA(0); p0.setB("p0");
        CompositeType p4 = new CompositeType();
        p4.setA(4); p4.setB("p4");

        MyCompany service = new MyCompanyLocator();
        service.getliteralDOC().myOperation(p0, 2, 8, p4);
    }
}
