<%@ page import="java.util.List,com.adobe.services.SimpleCustomerService,com.adobe.objects.SimpleCustomer" %> <% response.setContentType("text/xml"); SimpleCustomerService service = new SimpleCustomerService(); SimpleCustomer customer; List customers = service.getAllCustomers(); %> <% for(int i = 0; i < customers.size() ; i++) { customer = customers.get(i); if(customer != null) { %> <%=customer.getCustomerId()%> <%=customer.getCustomerName()%> <%=customer.getCustomerType()%> <%=customer.getCustomerAddress()%> <%=customer.getEntryModifiedDate()%> <% } } %>