+1 go for it :)

thanks,
dims

On 9/4/05, Chamikara Jayalath <[EMAIL PROTECTED]> wrote:
> 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 


-- 
Davanum Srinivas : http://wso2.com/ - Oxygenating The Web Service Platform

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to