|
|
@ -617,10 +617,10 @@ public final class httpdFileHandler extends httpdAbstractHandler implements http
|
|
|
|
requestHeader.put("PATH", path);
|
|
|
|
requestHeader.put("PATH", path);
|
|
|
|
// in case that there are no args given, args = null or empty hashmap
|
|
|
|
// in case that there are no args given, args = null or empty hashmap
|
|
|
|
Object tmp = invokeServlet(targetClass, requestHeader, args);
|
|
|
|
Object tmp = invokeServlet(targetClass, requestHeader, args);
|
|
|
|
if(tmp instanceof serverObjects){
|
|
|
|
if(tmp instanceof servletProperties){
|
|
|
|
tp=new servletProperties((serverObjects)tmp);
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
tp=(servletProperties)tmp;
|
|
|
|
tp=(servletProperties)tmp;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
tp=new servletProperties((serverObjects)tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if no args given , then tp will be an empty Hashtable object (not null)
|
|
|
|
// if no args given , then tp will be an empty Hashtable object (not null)
|
|
|
|
if (tp == null) tp = new servletProperties();
|
|
|
|
if (tp == null) tp = new servletProperties();
|
|
|
|