[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/http ...

Ron Sigal ron_sigal at yahoo.com
Thu Sep 21 03:32:36 EDT 2006


  User: rsigal  
  Date: 06/09/21 03:32:36

  Modified:    src/main/org/jboss/remoting/transport/http 
                        HTTPClientInvoker.java
  Log:
  JBREM-601:  Looks for exception in InvocationResponse payload.
  
  Revision  Changes    Path
  1.30      +4 -0      JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HTTPClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- HTTPClientInvoker.java	21 Sep 2006 04:43:06 -0000	1.29
  +++ HTTPClientInvoker.java	21 Sep 2006 07:32:36 -0000	1.30
  @@ -250,6 +250,10 @@
                        WebServerError ex = new WebServerError((String)result);
                        return ex;
                     }
  +                  else if (result instanceof InvocationResponse)
  +                  {
  +                     return ((InvocationResponse) result).getResult();
  +                  }
                     else
                     {
                        return result;
  
  
  



More information about the jboss-cvs-commits mailing list