验证是否通过远程处理调用了方法?
如何从方法内部验证它是否在远程处理上下文中执行? 我有一个基本的客户 -> NT-Service 设置,其中服务作为特定用户执行。 该用户有权访问 SQL Server。
我正在寻找一种解决方案,可以更轻松地捕获远程处理配置丢失或错误(未指定的方法等)时发生的问题。 我希望能够失败并显示更好的错误消息(“此方法需要远程处理上下文才能正常工作。”),而不是因登录错误而失败。 当原始用户对数据库具有只读访问权限并且在写入数据之前不会抛出错误时,情况会更加棘手。
How can I, from within a method, verify that it executes inside a remoting context? I've got a basic Client -> NT-Service setup where the service executes as a specific user. This user has access to a SQL Server.
I am looking for a solution that would make it easier to catch problems that occur when the remoting configuration is missing or bad (a method that wasn't specified, etc). I would like to be able to fail with a better error message ("This method requires a remoting context to work properly.") instead of failing with login errors. It's even more tricky when the original user has readonly access to the database and the error isn't thrown until data is written.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,您可以使用 System.Diagnostics 中的 stacktrace 类来检查方法调用来自何处。 :)
Well, you could use use the stacktrace class in System.Diagnostics to check where the method call is coming from. :)
我喜欢使用 MS 企业库 进行调试,您可以尝试使用日志记录和异常处理块来处理错误。
I like using the MS enterprise Library for debugging purposes, you can try using the logging and the exception handling blocks to handle the error.