|
-
May 9th, 2002, 07:23 AM
#1
Thread Starter
Addicted Member
COM and JSP
How do you reference a COM object in JSP?
-
May 9th, 2002, 01:14 PM
#2
Addicted Member
Note that there's a separate forum here that deals with Java and JSP.
Under normal circumstances, you don't access COM objects in JSP because in doing so, you violate the "write once run anywhere" principle. This is so because COM is restricted to the Windows environment and Java can run in many environments. You are better off having JSP accessing servlets and beans.
But I understand that the above advice applies to an ideal world. I would look to see if the Runtime object can run COM objects
http://java.sun.com/j2se/1.3/docs/api/index.html (click on Runtime on the left frame) Look at Runtime.exec().
cudabean
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|