Package org.apache.axis.wsi.scm.retailer.catalog

Examples of org.apache.axis.wsi.scm.retailer.catalog.CatalogType


        // Make a service
        RetailerService service = new RetailerServiceLocator();

        // Now use the service to get a stub which implements the SEI.
        RetailerPortType port = service.getRetailerPort();
        CatalogType catalog = port.getCatalog();
        CatalogItem[] items = catalog.getItem();
        for (int i = 0; i < items.length; i++) {
            System.out.println("------------------");
            CatalogItem item = items[i];
            System.out.println(item.getBrand());
        }
View Full Code Here

TOP

Related Classes of org.apache.axis.wsi.scm.retailer.catalog.CatalogType

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.