Uses of Class
org.sr.server.ServiceCallException

Packages that use ServiceCallException
org.sr.server This package contains core server side classes. 
org.sr.server.json This package contains JSON specific implementation of caller. 
 

Uses of ServiceCallException in org.sr.server
 

Methods in org.sr.server that throw ServiceCallException
 java.lang.Object IInterceptor.afterMethodCall(ICallerContextInfo<?> context, E request, org.sr.common.entitydef.ServiceDefinition serviceDef, org.sr.common.entitydef.OperationDefinition opDef, java.lang.Object serviceInstance, java.lang.Object[] parameters, java.lang.Object result)
          Callers executes this method right after they execute the targeted operation
 void IInterceptor.afterReceived(ICallerContextInfo<?> context, E request, org.sr.common.entitydef.ServiceDefinition serviceDef, org.sr.common.entitydef.OperationDefinition opDef)
          Callers executes this method immediately after a message is received by them.
 void IInterceptor.beforeMethodCall(ICallerContextInfo<?> context, E request, org.sr.common.entitydef.ServiceDefinition serviceDef, org.sr.common.entitydef.OperationDefinition opDef, java.lang.Object serviceInstance, java.lang.Object[] parameters)
          Callers executes this method before they execute targeted service operation
 E IInterceptor.beforeSent(ICallerContextInfo<?> context, E request, E response, org.sr.common.entitydef.ServiceDefinition serviceDef, org.sr.common.entitydef.OperationDefinition opDef, java.lang.Object serviceInstance, java.lang.Object[] parameters)
          Callers executes this method right before they send the result to the caller
 E ICaller.callAService(ICallerContextInfo<?> context, E request)
          Calls a java object method and returns the response
 

Uses of ServiceCallException in org.sr.server.json
 

Methods in org.sr.server.json that throw ServiceCallException
 JSONObject JSONCaller.callAService(ICallerContextInfo<?> context, JSONObject request)
           
 JSONObject IJSONCaller.callAService(ICallerContextInfo<?> context, JSONObject request)