Hi All,
Ping sample files (sync and async) seem to be failing (in the svn
samples directory). I think the reason is following code of
ClientPropertyValidator class.
private static boolean getInOut(Call call) {
OperationDesc oper = call.getOperation();
if (oper != null) {
if (oper.getMep() == OperationType.ONE_WAY) {
return false;
}
} else {
QName returnQName = (QName) call.getReturnType();
if (returnQName == null) {
return false;
}
}
return true;
}
I think this should be corrected as follows.
private static boolean getInOut(Call call) {
OperationDesc oper = call.getOperation();
if (oper != null) {
if (oper.getMep() == OperationType.ONE_WAY) {
return false;
}
}
QName returnQName = (QName) call.getReturnType();
if (returnQName == null) {
return false;
}
return true;
}
Chamikara
- Ping sample files are failing Chamikara Jayalath
- Re: Ping sample files are failing Davanum Srinivas
