|
|
 |
Tcljava-user
[tcljava-user] WebSphere Jacl Interface.
by Patrick Finnegan other posts by this author
Oct 21 2003 12:06PM messages near this date
Re: [tcljava-user] TclBlend on Solaris
|
[tcljava-user] Still pipelines...
Looking at developing Tcl GUI for IBM WebSphere administration which has
a jacl interface. Has anyone tried this?
For those of you who are interested........
The Jacl interface works by feeding the tcl script as a parameter to the
IBM Jacl implementation "com.ibm.ejs.sm.ejscp.WscpShell".
E.G.
C:> call WSCP -f d:\scripts\tcl\startserver.tcl
WSCP consists of :
@echo off
setlocal
call "%~dp0setupCmdLine.bat"
set EXT=-x com.ibm.ejs.sm.ejscp.RemoteExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.ContextExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.DrAdminExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.EjscpExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.PmiServiceExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.SecurityConfigExtension
set EXT=%EXT% -x com.ibm.ejs.sm.ejscp.SecurityRoleAssignmentExtension
REM This must be the last command executed so that ERRORLEVEL is set
REM correctly on exit.
%JAVA_HOME%\bin\java %WSCPCLIENTSAS% -Dserver.root=%WAS_HOME%
-Dws.ext.dirs=%WAS_EXT_DIRS% -classpath %WAS_CLASSPATH%
com.ibm.ws.bootstrap.WSLauncher com.ibm.ejs.sm.ejscp.WscpShell %EXT% %*
endlocal
-------------------------------------------------------
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
_______________________________________________
tcljava-user mailing list
tcljava-user@[...].net
https://lists.sourceforge.net/lists/listinfo/tcljava-user
|
|
|
 |
|