Package org.wso2.carbon.dataservices.core.dispatch

Examples of org.wso2.carbon.dataservices.core.dispatch.DataServiceRequest.dispatch()


    requestSuccessElement = doc.getOMDocumentElement();
  }

  public static OMElement dispatch(MessageContext msgContext) throws DataServiceFault {
    DataServiceRequest request = DataServiceRequest.createDataServiceRequest(msgContext);
    OMElement result = request.dispatch();
    if (result == null) {
      DataService ds = request.getDataService();
      String requestName = request.getRequestName();     
      if (!ds.hasResultForRequest(requestName) && ds.isReturningRequestStatus(requestName)) {
        /* in-only and returning the request status */
 
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.