Start / Stop Window services

Hi,
I would like to start and stop window services on remote computer.
Do you know if there is a package API in java to do it?
How can I do it?
Thanks,
Anat

Look for www.jscape.com
you can ftp or telnet to the computer, then start the command for that service
this is the code for ftp
* FtpExample.java
* Created on 01 March 2007, 10:30
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
package testing;
* @author Administrator
import com.jscape.inet.ftp.*;
import java.io.*;
import java.util.Enumeration;
public class FtpExample extends FtpAdapter {
    private String hostname;
    private String username;
    private String password;
    public FtpExample(String hostname, String username, String password) {
        this.hostname = hostname;
        this.username = username;
        this.password = password;
    // print out directory listing
    public void getListing() throws FtpException {
        Ftp ftp = new Ftp(hostname,username,password);
        //capture Ftp related events
        ftp.addFtpListener(this);
        ftp.connect();
         ftp.setDir("www");
        String results = ftp.getDirListingAsString();
        System.out.println(results);
        ftp.disconnect();
    // captures connect event
    public void connected(FtpConnectedEvent evt) {
        System.out.println("Connected to server: " + evt.getHostname());
    // captures disconnect event
    public void disconnected(FtpDisconnectedEvent evt) {
        System.out.println("Disconnected from server: " + evt.getHostname());
    public static void main(String[] args) {
        String hostname;
        String username;
        String password;
        try {
            FtpExample example = new FtpExample("ftplocation e.g 192.168.0.1","username","password");
            example.getListing();
        }catch(Exception e) {
            e.printStackTrace();
}

Similar Messages

  • Start and stop windows service for multiple remote computers

    Hello,
    Can someone show me how to Start and Stop windows service for multiple remote computers using Command Prompt or PowerShell or even Java?
    Thank you

    You asked a pure Windows related question at a pure Java related forum. We have advised you to look for a Windows related forum to post the question. Nothing special. It's like asking a car mechanican to help you with your migraine, he would advise you to look for a general practitioner.
    But why are you so surprised and negative about this answer after all? Don't we have to help you? Don't you appreciate help? So be it then, but please stay away then if you keep this attitude.

  • To start hyperion11 windows service

    Hi All.
    I use Hyperion 11
    In what order should i start hyperion11 windows services.
    Thanks.

    The following EPM System product services and processes are listed below in their recommended
    startup order.
    1. Databases for repositories.
    2. Any corporate user directories that you plan to configure for use with Shared Services.
    3. Shared Services OpenLDAP, or Oracle Internet Directory, depending on which is used as
    Shared Services Native Directory.
    4. Shared Services application server
    5. Oracle's Hyperion® Remote Authentication Module
    6. EPM Workspace Agent (CMC Agent)
    7. EPM Workspace application server
    8. EPM Workspace Web server
    9. Performance Management Architect Services
    10. Essbase Server
    11. Administration Services application server
    12. Smart Search application server
    13. Integration Services Server
    14. Essbase Studio Server
    15. Provider Services application server
    16. Reporting and Analysis (in any order):
    a. Financial Reporting Services
    b. Web Analysis application server
    17. Remaining services or processes (in any order):
    l Performance Management Architect application server
    l Performance Management Architect Data Synchronizer application server
    l Financial Reporting application server
    l Calculation Manager application server
    l Planning application server
    l Financial Management service
    116 Starting and Stopping EPM System Products
    l Strategic Finance service
    l Performance Scorecard application server
    l Performance Scorecard Alerter application server
    l Profitability and Cost Management application server
    l Data Relationship Management services
    l FDM Task Manager service
    l Hyperion ERPI - Web Application

  • SQL Command to Start/Stop SQL services for multiple server

    From Central server I want to Start/Stop SQL services and SQL Agent service. Is there any SQL command which I can execute on query analyzer which can Start/Stop SQL services?
    Rahul

    See command line options here using net start
    http://msdn.microsoft.com/en-IN/library/hh403394.aspx
    You can invoke them using xp_cmdshell from management studio as
    ie like below for default instance
    EXEC xp_cmdshell 'net start MSSQLSERVER'
    EXEC xp_cmdshell 'net start SQLSERVERAGENT'
    etc
    and below for named instance
    EXEC xp_cmdshell 'net start MSSQLSERVER$instancename'
    EXEC xp_cmdshell 'net start SQLSERVERAGENT$instancename'
    etc
    and use net stop for stopping services
    EXEC xp_cmdshell 'net start MSSQLSERVER' EXEC xp_cmdshell 'net start SQLSERVERAGENT' etc
    EXEC xp_cmdshell 'net start MSSQLSERVER' EXEC xp_cmdshell 'net start SQLSERVERAGENT' etc
    EXEC xp_cmdshell 'net start MSSQLSERVER' EXEC xp_cmdshell 'net start SQLSERVERAGENT' etc
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Problem: Deployment to WL10.3 Server Instance started as Windows Service

    Hi Everybody,
    I have deployed my J2EE Application to a Standalone WebLogic Server Instance (in development mode) started from the Windows Command Level via startWebLogic.cmd. I also tested the deployment to a Clustered Managed Server Environment(1 AdminServer+2 MS Servers in the cluster; development mode), all servers started from the command line. The application could be tested and everything worked fine.
    But:
    When I set up the WebLogic Server Instance(s) as a Windows Service(s) (following the instructions http://e-docs.bea.com/wls/docs103/server_start/winservice.html) my application can’t be deployed at startup time.
    I get 3 ClassNotFoundExceptions:
    - on startup class "DMS-Startup" (oracle.dms.wls.DMSStartup)
    - on startup class "ODL-Startup" (oracle.core.ojdl.weblogic.ODLConfiguration)
    - on startup class "JPS Startup Class" (oracle.security.jps.wls.JpsWlsStartupClass)
    The Service is started but under Administration Console/Deployments the Enterprise Application is marked as “New” and not as “ Active”. The other Deployments: adf.oracle.domain(1.0, 11.1.1.0.0), jsf(1.2, 1.2.7.1) and jstl(1.2, 1.2.0.1) are shown as “Active”.
    I tried to redeploy the Application directly from the JDeveloper to the running Standalone WLS Instance (Single Server) - as I did before.
    The Deployment failed:
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application ... on AdminServer.: .
    weblogic.management.DeploymentException:
    #### Deployment incomplete.
    #### Nov 25, 2008 9:58:53 PM
    Deployment Failed
    Why does the deployment work on the WLS Instance started from command line and why does it fail when started as Windows Service?
    I am Using WLServer 10.3 and the JDeveloper 11g on a Windows Vista OS - both installed via jdevstudio11110install.exe. My Web Application uses BC and ADF Faces.
    The Windows Service is set up by doing the following in a server-specific script placed under the USERDOMAIN_HOME directory:
    set DOMAIN_NAME=mydomain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\mydomain
    set JAVA_OPTIONS=Dweblogic.Stdout = … Dweblogic.Stderr=…
    set MEM_ARGS=-Xms40m –Xmx250m
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    And there’s one more problem with the Windows Service:
    I’m not able to Uninstall the service from a server-specific script, first setting the DOMAIN_NAME and the SERVER_NAME=AdminServer and than
    using call "C:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd".
    I must do this directly in the registry.
    Is anything missing? What’s wrong?
    Please help!
    Thanks
    Anita
    Edited by: user586097 on 26.11.2008 11:55
    Edited by: user586097 on 26.11.2008 12:00
    Edited by: user586097 on 26.11.2008 12:02

    This thread was very helpful to get WebLogic 11g running as a Windows service. My problem was that I couldn't get the Enterprise Manager application to deploy correctly on startup, so I had to tweak both the installSvc.cmd and my script that installs the service (by copying important Java Options from the startup script that works as noted above). It was too hard to discern what exactly Enterprise Manager needed, so I copied a whole bunch.
    What I ended up doing was using this as a script to install the Windows service:
    echo off
    SETLOCAL
    set DOMAIN_NAME=base_domain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\base_domain
    set SERVER_NAME=AdminServer
    set PRODUCTION_MODE=false
    set JAVA_OPTIONS=-client -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.Name=AdminServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Ddomain.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1 -Doracle.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dsso.filter.enable=true -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -noverify -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Dtangosol.coherence.log=jdk -Dwc.oracle.home=C:\Oracle\Middleware\Oracle_WC1 -DjiveHome=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\fmwconfig\servers\AdminServer\owc_discussions_11.1.1.1.0 -Dtangosol.coherence.log=jdk -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Doracle.mds.bypassCustRestrict=true -Djava.awt.headless=true -XX:+UseParallelGC -XX:+DisableExplicitGC -Dem.oracle.home=C:\Oracle\Middleware\Oracle_WC1 -Djava.awt.headless=true -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sysext_manifest_classpath
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    and slightly modifying my installSvc.cmd to:
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\Middleware\Oracle_WC1\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    It needed those extra .jars to deploy properly.
    Edited by: user11090163 on Sep 2, 2009 9:04 AM

  • How to check/start/stop hardening Service?

    Dear All,
    I want to check on Solaris 10 whether it has hardening service or not, and also want to start/stop this service.
    Please give any idea or advice.
    Thanks and regards,
    Heng

    Hi Heng,
    System hardening requirements changes from environment. So It should be designed to suit your infrastructure. The topic is too big to discuss here.
    I will give some examples of major things done in hardening.
    User level Security.
    1) Password complexity
    2) Restrict multiple login attempts.
    3) Log all failed login attempts
    4) configure pam module
    5) Use RBAC to deligate
    6) Restrict root login to console only.
    7) disable passwordless logins to any users
    8) disable services like rsh rlogin and related services and restrict access through ssh only.
    9) ENABLE & Configure BSM
    10) Enable Auditing
    11) disable/lock all unused system accounts.
    12) enable password encryption (/etc/shadow)
    Network Security
    1) Disable all unwanted services. (svcadm disable service on solaris 10)
    2) disable unused nonsecure services like telnet, ftp etc.
    3) tcpwrapers (restrict the network communication to the required subnets only)
    4) disable unwanted inetd services
    etc etc etc... discussed very few things from the normal hardening, and these things vary from environment to environment.
    Regards
    JKGN
    Edited by: 878434 on May 25, 2012 1:16 AM

  • Command to Start/Stop "Windows File Sharing" on OsX Tiger Client

    Dear Mac Gurus:
    How to use command to start/stop “Windows File Sharing” on OSX Tiger client?
    Thanks!
    Max

    Hi Max,
    Windows file sharing requires two daemons, nmbd and smbd. They can be started/stopped as follows:
    To start (type the following all in a single line):
    sudo launchctl load -w /System/Library/LaunchDaemons/nmbd.plist /System/Library/LaunchDaemons/smbd.plist
    To stop:
    sudo launchctl unload -w /System/Library/LaunchDaemons/nmbd.plist /System/Library/LaunchDaemons/smbd.plist
    The option "-w" indicates that the default setting (whether start them at boot time or not) is also modified (the same effect as you turn them on/off via System Preferences -> Sharing). This means, if you start them and shutdown your Mac without stopping them, then they will be automatically restarted next time you reboot the Mac.
    If you use "load -F" instead of "laod -w", then they are started but the default setting is not modified (if it is off then remains off).
    If you use "unload" instead of "unload -w", then they are stopped the default setting is not modified (if it is on then remains on and will be started at next reboot).
    If you feel the commands are too long to type, then you can devide them into two commands, for example:
    sudo launchctl load -w /System/Library/LaunchDaemons/nmbd.plist
    sudo launchctl load -w /System/Library/LaunchDaemons/smbd.plist
    See launchctl man page for more detail.
    HTH
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • Multiple instances not starting using Windows services

    Hi,
    We have two Oracle instacnes installed in same oracle home. They are not starting using windows 2000 service manager.
    I have to go to svrmgrl and set the ORACLE_SID environment variable to startup each instance. How can I make them start through windows Services instead of manually doing it.
    Is installing multiple instances in same home a good idea?
    These multiple instances are not part of paralell server.
    Regards,
    Wasim.

    Hi,
    I have checked the registry keys and everything looks ok.
    ORACLE_instance_AUTOSTART is true
    ORACLE_instance_PFILE is correct
    ORACLE_instance_SHUTDOWN is true
    ORACLE_instance_SHUTDOWNTYPE is i
    Above values are right for both instances. I even have recreated the services using ORADIM. I can start both instances by going to command prompt set ORACLE_SID and start the instance using SVRMGRL. But they'll not autostart when the machine is rebooted.
    Regards,
    Wasim.

  • Problem with SJAS EE 9.1 start and stop (Windows Service Mode)

    Hi
    Thank you for reading my post
    Sun Java application server enterprise edition 9.1 (SJAS EE 9.1+HADB) asks for admin password each time windows try to start it as windows service.
    Also HADB asks for password on start.
    Is there any way to make it automatic without requiring password?
    Thanks

    You need to add a password.txt file to your app server path. See the section Security for Automatic Restarts in the administration guide for details.
    You may also need to recreate the service to use the passwordfile option.  If it is prompting you for a master password also you may need to have your domain and node agents created with the savemasterpassword option. I believe you will have to recreate the node agents, but you can use the asadmin command change-master-password for the domain and specify the --savemasterpassword option.
    I have not used the service for the HADB yet, but I believe the procedure is probably similar.

  • Automate start/stop essbase service using Maxl or batch

    Hi - how would my batch or Maxl file look like if I wanted to come out with a script to stop and start my essbase service? The reason why i am doing this is because I wanted to stop the essbase service, so that I can archive the essbase.log file.
    I am on essbase 7.0, I have read on some postings that stopping and starting the essbase service can potentially corrupt the sec file. If so, then is there any other way of archive the essbase.log file so that it does not grow to megs.
    Thanks.

    Hi,
    You could use the following maxl
    alter system shudown;
    it may be useful to stop all the applications first e.g.
    alter system unload application all;
    or you can use windows command line
    net stop essbaseservicename
    and to start
    net start essbaseservicename
    Another method to backup the essbase.log is to make a copy of the log then use maxl to delete the log.
    alter system clear logfile;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Starting OEM Windows Service only after database is ready

    I have a Windows Service program (written in vb.net) that accesses an Oracle database via the Oracle ODBC driver. It runs fine as long as the database comes up first. In some installations, however, the Oracle system is not ready to connect when Windows auto-starts my service.
    I have tried using both the database service name and the TNS_Listener... as a value in a DependsOnService key in the registry for my service, but it seems to have no effect. Judging by the event logs, Oracle continues to spin out "processes" for something over 30 seconds, which appear after my service is started regardless of what I do with the DependsOnService parameter.
    How can I make Windows auto-start my service only after Oracle is ready?

    Sure, although "net start" is a Windows thing, not an Oracle thing. Here is the contents of my startup.cmd file.
    net start "OracleOraDb10g_home1TNSListener"
    net start "OracleServicePROD"
    net start "OracleDBConsoleprod"
    net start "OracleCSService"
    net start "OracleOraDb10g_home1iSQL*Plus"
    pause
    The thing in quotes is the service name found in the Windows Services panel. In order to use this method you should set the services you wish to control as Manual startup (instad of Automatic). You can do that by right clicking on a service name/Properties/Startup Type.
    To do a shutdown, I reverse the order of the above script and of course change the starts to stops.

  • Creating a Business Service for Start/Stop Application Service in CCB 2.3.1

    Hi,
    I'm in the process of creating a BPA script that invokes a Business Service to perform a Start/Stop for a given Account ID/Premise ID combination. The Business Service is using the base Application Service: Start Stop (CILCSSEP). I am moving the Account ID and Premise ID, along with the start date and requested by fields to the data area of the Business Service, prior to invoking it. When I invoke the Business Service via the BPA script, it throws the below error message... I'm at a loss because the BILL_ADDR_SRCE_FLG is being set to a default of "PREM" on the Business Service Schema:
    A Bill Address Source is required on the address override record. Please enter a valid value.
    One of these two is true:
    1) The Bill Route Type on this record has a Bill Routing Method of 'Postall', or
    2) The main customer on the Account has a Quote Route Type with a Quote Routing Method of 'Postal'.
    In either case, the Bill Address Source must be populated with a valid value.
    If you need support please supply the following info to system support:
    Message number: 3, 59204
    Business Service: CMSTARTSERVICE
    Application Service: CILCSSEP
    Schema:
    <schema pageAction="fastChange">
    <accountId mapField="ACCT_ID"/>
    <df mapField="DEFAULT_FOR_FLG"/>
    <startDate mapField="STRT_START_DT"/>
    <startOption mapField="STRT_TYPE_FLG"/>
    <premiseId mapField="STRT_PREM_ID"/>
    <premAddress mapField="ADDRESS1"/>
    <premCity mapField="CITY"/>
    <startCisDiv mapField="STRT_CIS_DIVISION"/>
    <startReqBy mapField="STRT_STRT_REQ_BY"/>
    <bldStrtSaSw mapField="BUILD_START_SA_SW" default="true"/>
    <accountIdtwo mapField="ACCT_ID2"/>
    <mainCustPerId mapField="MAIN_CUST_PER_ID"/>
    <billFrmtFlg mapField="BILL_RTE_TYPE_CD" default="POSTAL" private="true"/>
    <billAddrSrcFlg mapField="BILL_ADDR_SRCE_FLG" default="PREM"/>
    <billAddrSrcFlg2 mapField="BILL_ADDR_SRCE_FLG2" default="PREM"/>
    <startStopTelephoneOverride type="list" mapList="OVRD_PHONE">
    <accountId mapField="ACCT_ID"/>
    <sequence mapField="SEQ_NUM"/>
    <phoneType mapField="PHONE_TYPE_CD"/>
    <internationalPrefix mapField="COUNTRY_CODE"/>
    <phone mapField="PHONE"/>
    <extension mapField="EXTENSION"/>
    <version mapField="VERSION"/>
    </startStopTelephoneOverride>
    <startBtn mapField="ACTION_START_SW" default="true" private="true"/>
    </schema>
    I'm running CC&B 2.3.1 - Any help in pointing me in the right direction to get this working would be greatly appreciated, Thanks!
    Regards,
    Jack

    Hi,
    Can you try and do this transaction online and see if the error occurs as well? If so run it with traces on and check for the details just before the error is thrown. ( you can also switch on debug via the service call, but it may be easier to debug when doing this online. ) I am predicting this error will occur also when you do it online.
    When you are using an Account with its main Person set up with BILL_ADDR_SRC_FLG as PREM you will need a valide PREM_ID on the CI_ACCT record for MAILING_PREM_ID and the premise needs to have a switch set to YES indicating it is a Mailing Address type Premise.
    Good luck
    Arjen

  • Mail service on start/stop of services ...

    Hi,
    Please let me know the way to send mail when services are started/stopped in oracle application 11.5.10.2. How to configure this on ibm aix 5.3.
    Thanks,
    Sai Ram

    There is a way to configure emails on startup/shutdown of Concurrent Manager service - but I'm not aware about any such configuration around other services (eg. Apache, Apps Listener, Forms Server etc..)
    I think you'll have to do this outside Oracle's scripts if you wish to set this up - either by wrapping the calls to seeded scripts in your own custom script, or if you want a periodical probing, then via use of cron/scheduler depending on the OS you're on.
    Hope that helps.
    Regards,
    Rakesh
    PS : In addition to the Concurrent Managers, I think you should be also able to achieve this for database services if you wish to do that - by use of startup and shutdown database triggers.

  • SAP Web Dispatcher does not start as windows service

    Hi,
    I have successfully installed and configured SAP Web Dispatcher. When I start the web dispatcher from command prompt, it works fine. I created a windows service for web dispatcher using the command
    ntscmgr install sapwebdisp -b "c:\program files\sap\sapwebdisp\sapwebdisp.exe"
    -p "service pf=sapwebdisp.pfl -cleanup -auto_restart"
    The command successfully created sapwebdisp service. The service also starts fine, but web dispatcher does not get started.
    Any ideas experts?

    Hi,
    Ok. Few suggestions.
    1. Can you review the SAP note:
    552286  Troubleshooting for the SAP Web Dispatcher
    2. When you said: "web dispatcher does not get started ", what error you got ? Can you be more details here ?
    3. Please check the trace file dev_webdisp" that generated in the work directory. If the log entries is not abvious, increase the trace level to 2 or 3, and reproduce and re-check the trace file.
    4. What is the output of the command "sapwebdisp -v"
    5. How about sapwebdisp.pfl ? Are those settings correct ?
    Hope this helps.
    Regards,
    Vincent

  • Problems starting a windows service

    WLS 10.3.3, Windows 2003, JDev 11.1.1.3
    I have followed the create service instruction and created a service.
    The admin server comes up and I can see everything - however none of the deployed applications start - and the service reports an untimely start.
    There are missing classes when I try to manually start the service.
    Supposedly all the classes are in the installSvc script.
    I see others are having similar problems - but todate - I have not found a resolution to this.
    It seems to be obvious that there must be a classpath missing.
    The following are the errors in the adminLog:
    ####<Jan 15, 2011 9:52:23 AM GMT+03:00> <Notice> <Security> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074343299> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ...     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "AWT Application Context Startup Class", java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ...     at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "JMX Framework Startup Class", java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
    ...     at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "JOC-Startup", java.lang.ClassNotFoundException: oracle.ias.cache.Startup
    java.lang.ClassNotFoundException: oracle.ias.cache.Startup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
    ...     at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:24 AM GMT+03:00> <Critical> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074344600> <BEA-000286> <Failed to invoke startup class "DMS-Startup", java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
    ...     at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:25 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <> <1295074345732> <BEA-000365> <Server state changed to STANDBY>
    ####<Jan 15, 2011 9:52:25 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <> <1295074345732> <BEA-000365> <Server state changed to STARTING>
    ####<Jan 15, 2011 9:52:26 AM GMT+03:00> <Error> <HTTP> <win2003s> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074346944> <BEA-101371> <There was a failure when processing annotations for application C:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.war. Please make sure that the annotations are valid. The error is oracle.dms.wls.DMSServletFilter>
    ####<Jan 15, 2011 9:52:26 AM GMT+03:00> <Error> <Deployer> <win2003s> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074346944> <BEA-149205> <Failed to initialize the application 'DMS Application [Version=11.1.1.1.0]' due to error weblogic.application.ModuleException: Failed to load webapp: 'dms.war'.
    weblogic.application.ModuleException: Failed to load webapp: 'dms.war'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:404)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:507)
    ...     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.lang.ClassNotFoundException: oracle.dms.wls.DMSServletFilter
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    ...     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Error> <Deployer> <win2003s> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074347024> <BEA-149205> <Failed to initialize the application 'FMW Welcome Page Application [Version=11.1.0.0.0]' due to error weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.application.internal.flow.BaseLifecycleFlow$CreateMainClassAction.run(BaseLifecycleFlow.java:270)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.application.internal.flow.BaseLifecycleFlow$BaseAction.invoke(BaseLifecycleFlow.java:104)
    ...     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.lang.ClassNotFoundException: oracle.jrf.wls.StartupClassesAppExecutor
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
    ...     at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Error> <HTTP> <win2003s> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074347164> <BEA-101165> <Could not load user defined filter in web.xml: ServletContext@31372791[app:wsil-wls module:/inspection.wsil path:/inspection.wsil spec-version:2.5] oracle.dms.wls.DMSServletFilter.
    java.lang.ClassNotFoundException: oracle.dms.wls.DMSServletFilter
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
    ...     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Error> <Deployer> <win2003s> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295074347164> <BEA-149231> <Unable to set the activation state to true for the application 'wsil-wls'.
    weblogic.application.ModuleException:
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1514)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    ...     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.lang.ClassNotFoundException: oracle.dms.wls.DMSServletFilter
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    ...     at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsAfterAppAdminState(ClassDeploymentManager.java:162)
         at weblogic.management.deploy.classdeployment.StartupClassPrelistenService.start(StartupClassPrelistenService.java:13)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000004> <1295074347274> <BEA-000365> <Server state changed to RESUMING>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000004> <1295074347254> <BEA-000365> <Server state changed to ADMIN>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <Server> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000008> <1295074347314> <BEA-002613> <Channel "Default" is now listening on 10.0.2.15:7101 for protocols iiop, t3, ldap, snmp, http.>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000008> <1295074347314> <BEA-000331> <Started WebLogic Admin Server "AdminServer" for domain "ADFDomain" running in Development Mode>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <Server> <win2003s> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000008> <1295074347314> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000004> <1295074347465> <BEA-000365> <Server state changed to RUNNING>
    ####<Jan 15, 2011 9:52:27 AM GMT+03:00> <Notice> <WebLogicServer> <win2003s> <AdminServer> <main> <<WLS Kernel>> <> <aaa1e3e54fdb4a71:-7f2607e0:12d887248e2:-8000-0000000000000004> <1295074347465> <BEA-000360> <Server started in RUNNING mode>

    Hi.
    Can you check if there is a file called start.err under C:\asennus\odsee\ofm_odsee_win_11.1.1.7.0_disk1_1of1\ODSEE_ZIP_Distribution\sun-dsee7\dsee7\var\dcc\agent\logs ? It should contain the root cause of the startup failure.
    If not, I also have a doubt regarding the length of the install path you use. Length of the commands that will be launched may exceed the max size of command on Windows.
    Regards,
    Carole.

Maybe you are looking for