You can debug the serviceDeploy utility which comes with WebSphere Process Server (or WebSphere Integration Developer). Unfortunately I could not find what we should give in options file.
servicedeploy -help
serviceDeploy inputArchive [options]
Options:
-workingDirectory dir A directory in which to generate temporary files. Default=.
-outputApplication app.ear The path and name of the deployed ear. Default=[inputArchive]App.ear
-noJ2eeDeploy Whether the j2ee deployers, including ejbdeploy, should be skipped. Default=false
-noJavaSource Whether the Java source files should be excluded from the generated ear. Default=false
-freeform Whether a j2ee subdirectory in the service jar should be free-form enabled. Default=false
-cleanStagingModules Whether the staging modules in an input ear file should be deleted and recreated during deploy. Default=false
-keep Whether the temporary workspace in the working directory should be preserved after deploy. Default=false
-ignoreErrors Whether an ear file should be exported despite compile or validation errors. Default=false
-classpath x.jar;y.rar A list of jars and rars required on the classpath
-uniqueCellID Unique ID in the context of the cell that is used to create a unique instance of the application.
-progressMonitor type Whether and how progress should be monitored. Type may be one of [none|meter|message]. Default=none
-fileEncoding encoding The default file encoding for the workspace root. Default is unspecified.
-debug optionsFile An options file that enables eclipse trace.
-javaDebug Whether all debug information should be included in generated class files.
After long hours on google, I found it's documented in IBM Education: component deployment with ServiceDeploy (link).
You can try below as your options file; Of course, best is to get assistance from IBM service, and use the options at your own risk.
org.eclipse.jdt.core/debug=true
org.eclipse.jdt.core/debug/builder=true
org.eclipse.jdt.core/debug/trace=true
com.ibm.ws.sca.rapiddeploy.style/debug=true
com.ibm.ws.sca.rapiddeploy.style/debug/trace=true
com.ibm.ws.sca.rapiddeploy.style/debug/event=true
com.ibm.ws.sca.rapiddeploy.style/debug/info=true
com.ibm.ws.sca.rapiddeploy.headless/debug=true
com.ibm.ws.sca.rapiddeploy.headless/debug/trace=true
com.ibm.ws.sca.rapiddeploy.headless/debug/event=true
com.ibm.ws.sca.rapiddeploy.headless/debug/info=true
com.ibm.ws.artifact.locator/debug=true
com.ibm.ws.artifact.locator/debug/trace=true
com.ibm.ws.artifact.locator/debug/event=true
com.ibm.ws.artifact.locator/debug/info=true
com.ibm.ws.artifact.locator/debug/dump=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/trace=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/event=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/info=true
Ex:
serviceDeploy InputArchive.zip -keep -debug options.txt
Subscribe to:
Post Comments (Atom)
1 comment:
org.eclipse.jdt.core/debug=true
org.eclipse.jdt.core/debug/builder=true
org.eclipse.jdt.core/debug/trace=true
com.ibm.ws.sca.rapiddeploy.style/debug=true
com.ibm.ws.sca.rapiddeploy.style/debug/trace=true
com.ibm.ws.sca.rapiddeploy.style/debug/event=true
com.ibm.ws.sca.rapiddeploy.style/debug/info=true
com.ibm.ws.sca.rapiddeploy.headless/debug=true
com.ibm.ws.sca.rapiddeploy.headless/debug/trace=true
com.ibm.ws.sca.rapiddeploy.headless/debug/event=true
com.ibm.ws.sca.rapiddeploy.headless/debug/info=true
com.ibm.ws.artifact.locator/debug=true
com.ibm.ws.artifact.locator/debug/trace=true
com.ibm.ws.artifact.locator/debug/event=true
com.ibm.ws.artifact.locator/debug/info=true
com.ibm.ws.artifact.locator/debug/dump=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/trace=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/event=true
com.ibm.ws.sca.rapiddeploy.headless.HeadlessServiceDeploy/debug/info=true
com.ibm.ast.ws.v61.consumption.j2ee15/debug=true
com.ibm.ast.ws.jaxws.emitter/debug=true
com.ibm.ws.sca.rapiddeploy.headless.applications.ServiceDeployApplication/debug=true
com.ibm.ws.sca.rapiddeploy.headless.applications.ServiceDeployApplication/event=true
com.ibm.ws.sca.rapiddeploy.headless.applications.ServiceDeployApplication/info=true
com.ibm.ws.sca.rapiddeploy.headless.operations.SCAZipProjectInterchangeImportOperation/debug=true
com.ibm.ws.sca.rd.style.operations.SCAProjectConfigurationOperation/debug=true
com.ibm.ws.sca.rd.style.util.SCAStyleUtil/debug=true
com.ibm.ws.sca.rd.style.util.OperationFactory/debug=true
com.ibm.ws.sca.rd.style.operations.DependencyEditorOperation/debug=true
Post a Comment