home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / HelloWorld_test.asp < prev    next >
Text File  |  1997-10-25  |  560b  |  28 lines

  1. <%@ LANGUAGE = VBScript %>
  2. <%  Option Explicit     %>
  3.  
  4. <HTML>
  5. <HEAD>
  6. <META NAME="GENERATOR" Content="Microsoft Developer Studio">
  7. <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  8. <TITLE>Java Component Samples: HelloWorld</TITLE>
  9. </HEAD>
  10. <BODY>
  11.  
  12. Calling a method of a Java component from ASP:<P>
  13.  
  14. <%
  15.  
  16.     Dim Obj
  17.  
  18.     ' Create the Java component
  19.     Set Obj = Server.CreateObject("IISSample.HelloWorld")
  20.  
  21.     ' Call the method and print the returned string
  22.     Response.Write Obj.sayHello
  23.  
  24. %>
  25.  
  26. </BODY>
  27. </HTML>
  28.