/** * This class is designed to be packaged with a COM DLL output format. * The class has no standard entry points, other than the constructor. * Public methods will be exposed as methods on the default COM interface. * @com.register ( clsid=ADE14872-9CF6-42A0-A8F2-7A571E51A840, typelib=5E11D496-7229-4283-A40B-139E05DEF44C ) */ //上面我們看到一個clsid,它是用來標記微軟COM組件所用的。
import com.ms.iis.asp.*;//導入兩個包
import com.ms.mtx.*;
public class JavaASP {
public boolean HelloWorld()
{ Response newRes = AspContext.getResponse();//創(chuàng)建一個Response newRes.write("Hello World,Maybe it is your first JavaASP COM!"); return true; }