for (int i = 0; i < ppp.length - 1; i++) {
System.out.println(ppp[i].getId() + ":"
+ ppp[i].getDescription() + "\t: " + ppp[i].getPrice()
+ "\t: " + ppp[i].getLocation());
if(ppp[i].getDescription().equals("cacat")){
stub.ItemAdminStub.ChangeProductDescription desc=new ChangeProductDescription();
desc.setDescription("cacat2");
desc.setId(ppp[i].getId());
try {
s.changeProductDescription(desc);
} catch (ChangeProductDescriptionFault e) {
e.printStackTrace(System.err);
}