public InvokeResult invoke(Parameter returnType, String typeName, String methodName, Parameter[] paras) throws Exception, Throwable {
long watcher = System.currentTimeMillis();
List<KeyValuePair> listPara = new ArrayList<KeyValuePair>();
for (Parameter p : paras) {
listPara.add(new KeyValuePair(p.getSimpleName(), p.getValue()));
}
RequestProtocol requestProtocol = new RequestProtocol(typeName, methodName, listPara);
Protocol sendP = new Protocol(createSessionId(),
(byte) config.getServiceid(),
SDPType.Request,