[Object Parameters]Main Parameter[/Object]
To embed the results of an external function (which could be a Windows ActiveX DLL or Java class file on any platform) into one of your pages, put an Object context with appropriate parameters into a template. The parameters are sent to the external module, and the result of the external call are displayed as text in place of the context. Any [xxx] tags inside the context are first substituted for their real values before the Object is executed.
Example (normally you would put the following text into a .TPL file on your server and use a web browser to link to it):
[OBJECT objname=MS.CUSTOM[!]
[/!]&call=MyFunction¶m1=Hello¶m1type=text¶m2=2000¶m2type=num]
[/OBJECT]
The ActiveX control DLL "MS.CUSTOM" will be loaded
and "MyFunction" will be executed with the following
parameters:
Parameter 1: Hello Type: text
Parameter 2: 2000 Type: num
Parameter | Description |
---|---|
objname |
ActiveX: The name of the ActiveX control Java: The name of the Java class file |
call |
ActiveX: Name of function to call. Java: Name of the method to call (NOTE: the method must be be able to receive "java/lang/String" and return "java/lang/String") |
type |
(Optional) The type of module to execute. 0 - ActiveX (Default) 1 Java .class file |
classpath |
(Required for Java) Location of the .class file and all the
supporting .jar files. Can contain multiple locations separated
by semicolons ";". Only java modules require this
parameter. Note: This is only used on Mac OS platforms and is ignored in all the other platforms. If you want to set the classpath for the other platforms, you have to manually change the JavaClassPath preference in the "WebCatalog Prefs" file, but make sure you shutdown WebDNA before doing this. |
Param1 |
(Optional) Value of the first parameter to be passed into
the ActiveX or Java function. For boolean values, use 0 for FALSE and 1 for TRUE |
Param1Type |
(Required for each parameter) Data type of the first parameter. Choose from bool, num, or text |
Param2 |
(Optional) Value of the second parameter to be passed into the ActiveX or Java function |
Param2Type |
(Required for each parameter) Data type of the second parameter |
...ParamN |
(Optional) As many parameters as are necessary may be passed into the ActiveX/Java function |
...ParamNType | (Required for each parameter) For each value passed, you must define its data type |