// we have a service and the model; build the context
Map serviceContext = new HashMap();
Iterator modelParmInIter = model.getInModelParamList().iterator();
while (modelParmInIter.hasNext()) {
ModelParam modelParam = (ModelParam) modelParmInIter.next();
String name = modelParam.name;
// don't include userLogin, that's taken care of below
if ("userLogin".equals(name)) continue;
// don't include locale, that is also taken care of below