return (mapping.findForward(Constants.XMLHandler));
}
// Now, let's prepare output
ScheduleServerOutput iwao = new ScheduleServerOutput();
iwao.setPageTitle ("Schedule Server");
iwao.setFormAction ("Schedule.do");
//iwao.setEnctype("multipart/form-data");
iwao.setFormMethod ("POST");
// HTML form's fields
Collection fco = new ArrayList();
HTMLFormField hff1 = new HTMLFormField();
hff1.setTitle ("c1");
hff1.setName ("c1");
hff1.setType ("hidden");
hff1.setSize ("25");
hff1.setValue ( null );
fco.add (hff1);
HTMLFormField hff2 = new HTMLFormField();
hff2.setTitle ("c2");
hff2.setName ("c2");
hff2.setType ("hidden");
hff2.setSize ("25");
hff2.setValue ( null );
fco.add (hff2);
iwao.setFields(fco);
System.out.println("4");
Collection coo = new ArrayList();
for(int j=0;j<ss.length;j++)
coo.add (ss[j]);
System.out.println("5");
iwao.setServers(coo);
System.out.println("6");
if (Constants.xmlOutputOnly) {
request.setAttribute ("content", Constants.xmlContentType);
} else {
request.setAttribute ("content", Constants.htmlContentType);