实际上我创建了服务结构无状态应用程序。虽然添加实例监听器如下
requiresDependencyCollection = ResolutionScope.RUNTIME_PLUS_SYSTEM, requiresDependencyResolution = ResolutionScope.RUNTIME_PLUS_SYSTEM
但是这些监听器不用于无状态。它给出了错误,就像没有带参数的实例一样。单个参数或2个参数。 由于这些原因,我尝试了
protected override IEnumerable<ServiceInstanceListener> CreateServiceInstanceListeners()
{return new[] { new ServiceInstanceListener(context => this.CreateServiceRemotingListener(context)) };
}
- &gt;至于控制台应用程序(带服务代理)能够调用服务方法 - &gt;但是随着另一个无状态应用程序的到来,我无法调用任何方法。并且不会抛出任何异常
Tq的。 请任何人建议我使用它