在服务器端运行的作业需要调用在客户端运行的方法
假设我有一个在服务器端运行的作业,并且同一作业中的一行需要在客户端运行,这可以实现吗?当我尝试批量运行 Global 类中的 WeekofYear 方法时,它不会执行(因为它调用只能在客户端上运行的 WINApi 类方法。)
KIndly Assist。
Suppose i have a job which runs in server-side and a line in the same job needs to run on client-side, Can this be achieved? When I try to run the method WeekofYear in Global class in batch, it is not executed (cause it makes calls to WINApi class methods which can only run on client.)
KIndly Assist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只能建议您创建一个新方法,例如
Global::weekOfYearServer
并确保所有 WinAPI 调用都在服务器上执行 - 您可以尝试在WinAPIServer
中创建适当的方法班级。I can only suggest you to create a new method e.g.
Global::weekOfYearServer
and make sure all the WinAPI calls are executed on server - you can try creating appropriate methods in theWinAPIServer
class.