Package org.apache.muse.core.routing

Examples of org.apache.muse.core.routing.ResourceRouter.invoke()


      ResourceRouter delegateRouter = null;
      if(bundle != null){
        delegateRouter = (ResourceRouter)delegateMap.get(bundle);
      }
          ((OSGiEnvironment)getEnvironment()).setThreadLocalBundle(bundle);
    return delegateRouter.invoke(soapBody);
        } finally {
            ((OSGiEnvironment)getEnvironment()).setThreadLocalBundle(null);
        }
  }
 
View Full Code Here


            LoggingUtils.logMessage(router.getLog(), request, true);

        //
        // actually perform the operation with the given parameters
        //
        Element result = router.invoke(requestData);
       
        //
        // the standard response wsa:Action name is Action + "Response"
        //
        MessageHeaders replyAddressing = null;
View Full Code Here

      ResourceRouter delegateRouter = null;
      if(bundle != null){
        delegateRouter = (ResourceRouter)delegateMap.get(bundle);
      }
          ((OSGiEnvironment)getEnvironment()).setThreadLocalBundle(bundle);
    return delegateRouter.invoke(soapBody);
        } finally {
            ((OSGiEnvironment)getEnvironment()).setThreadLocalBundle(null);
        }
  }
 
View Full Code Here

            LoggingUtils.logMessage(router.getLog(), request, true);

        //
        // actually perform the operation with the given parameters
        //
        Element result = router.invoke(requestData);
       
        //
        // the standard response wsa:Action name is Action + "Response"
        //
        MessageHeaders replyAddressing = null;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.