Webobjects 中的进程间通信(jvm、wotaskd、apache 模块)
我正在使用 Apple Webobjects 的 Java 版本,并且想知道它在幕后是如何工作的。要使应用程序成功运行,似乎需要在 java 虚拟机中运行 java WebObjects 应用程序、一个带有作为 apache 模块安装的 webobjects 适配器的 apache 实例以及作为 unix 守护进程运行的“wotaskd”。
到达 apache 的 http 请求如何最终变成 java WORequest ?
wotaskd 的目的是什么?它在这一切中扮演什么角色?
适配器如何与 JVM 进程“对话”?共享内存?有JNI参与吗?这一切是如何运作的?
I am using the Java edition of Apple Webobjects and was wondering how it all works under the hood. For an app to run successfully it would appear that one needs the java WebObjects Application running in the java virtual machine, an apache instance with the webobjects adapter installed as an apache module and "wotaskd" running as a unix daemon.
How does an http request that arrives on apache end up becoming a java WORequest??
What is the purpose of wotaskd?? What role does it play in all this??
How does the adaptor "talk" to the JVM process? Shared memory? Is there any JNI involved? How does it all work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wotaskd 和 Apache 模块仅在部署时需要,对于开发则不需要它们。 wotaskd 是一个工具/守护进程,它将启动您的 WebObjects 应用程序并监视它们。 Apache 模块 (mod_WebObjects) 用于在 Apache 和 WebObjects 应用程序之间转发请求和响应。 IHMO,这一切都是通过 HTTP 完成的,不涉及 JNI。
检查“Deploying_Applications”指南(您可以在 http://wiki.objectstyle.org 获取它/confluence/display/WO/Documentation),它解释了一切。
wotaskd and the Apache module are only needed for deployment, for development they are not required. wotaskd is a tool/daemon that will launch your WebObjects applications and watchdog them. The Apache module (mod_WebObjects) is there to forward requests and responses between Apache and the WebObjects application. IHMO, it's all done over HTTP, no JNI involved.
Check the "Deploying_Applications" guide (you can get it at http://wiki.objectstyle.org/confluence/display/WO/Documentation), it explains everything.