Hi,

I want to submit a set of multiple jobs. Can any body give me example how does it work or guide me about any tutorial in which this topic is discussed. I done something like this:

MultiJobDescriptionType multi = new MultiJobDescriptionType();

                        ArrayList multijobs = new ArrayList();
JobDescriptionType desc = new JobDescriptionType();
                        ........
                        ........
                        multijobs.add(desc);
multi.setJob((JobDescriptionType[]) multijobs.toArray());
                        
                        ??????????
                        ??????????

now I don't know how to proceed. what Class should I use to submit all the jobs altogather. I think GramJob is use to submit single jobs? (am I right)

Thanks for the help.

Salman Toor.

Reply via email to