private static void ProcessRequest(RpcHttpServerChannel channel, HttpListenerContext httpContext) { try { RpcHttpServerTransaction tx = new RpcHttpServerTransaction(channel, httpContext); channel.OnTransactionCreated(tx); } catch (Exception ex) { SystemLog.Error(LogEventID.RpcFailed, ex, "RpcServiceStartFailed"); } }
public static void ProcessRequest(RpcHttpServerChannel channel, HttpListenerContext httpContext) { try { RpcHttpServerTransaction trans = new RpcHttpServerTransaction(httpContext); channel.TransactionStart(trans); } catch (Exception ex) { SystemLog.Error(LogEventID.RpcFailed, ex, "RpcServiceStartFailed"); } }