Server path not drive CL_GUI_FRONTEND_SERVICES= FILE_OPEN_DIALOG

Hi folks
When using the CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG or WS_FILENAME_GET we some times have the server path returned.
And sometimes the drive letter returned.
See two examples:
1: \\blrx1\os390out\id1\test.txt
2: R:\os390out\id1\test.txt
What to do when we ALWAYS want the server path returned??
Best regards
Carsten

I have used this several times in my own coding and I always get the \\
in my end result
method import_the_file_locn.
  data:
    lv_wintitle type string value 'Select Upload File',
    lv_deffile type string value 'asset_data',
    lv_dir type string value 'c\:',
    ls_file type line of filetable,
    lv_rc type i,
    lv_user_action type i.
  free gv_sdir.
  call method cl_gui_frontend_services=>file_open_dialog
    exporting
      window_title            = lv_wintitle
      default_filename        = lv_deffile
      initial_directory       = lv_dir
    changing
      file_table              = gt_file
      rc                      = lv_rc
      user_action             = lv_user_action
    exceptions
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      others                  = 4.
  check lv_user_action is initial.
  read table gt_file into ls_file index 1.
  translate ls_file to lower case.
  gv_sdir = ls_file.
endmethod.
I don't know whether it is perhaps a mapping issue / windows setting that results in the path returned with the mapped drive?
I just debugged one of methods above and I cant recreate the same issue when I pick up a file in a mapped directory, sorry.
I guess there is also the option for you to do some substring manipulation and path mapping in a look up table - but if you have hundreds of servers rather than a few maybe not the best workaround.

Similar Messages

  • Server path not recognized on ical

    I have updated my Mac, iphone4 and ipad. I am using icloud. When i try to synch my ical with icloud, I get a message that my server path is not recognized. What's up? It was working yesterday with no problem and I haven't changed any settings.

    FYI: POP will by default, delete messages from the server after downloading them (This applies to most pop clients, computer or mobile). POP is old tech and is not recommended if IMAP or Exchange are available. The default when setting up a g-mail type account is IMAP. Full synchronization with the server. You may also be able to set it up as an Exchange account, allowing for push e-mail and sync of calendars and contacts as well. See the Gmail help pages for instructions.

  • Escrow the recovery key in DB server and not in AD when removable drive is encrypted.

    Is there any way to escrow the recovery key in the database server and not in AD when removable drive (USB drive) is encrypted via manage-bde command line? The data recovery agent is not enabled in our organization. 
    "Choose how bitlocker protected removable Drives can be recovered" for removable drives is disabled in our Group policy also.
    Please advise. Thank you.

    As far as I am concerned, you cannot do that when you are using the command line "Manage-bde".
    The reason is because, the manage-bde command line parameters doesn't support saving recovery keys to databases. Also there is not any group policy defined for it.
    I you want an option to save recovery keys in a database rather than the AD, I would recommend to use MBAM (Microsoft Bitlocker Administration and Monitoring).
    Gaurav Ranjan

  • [[DataDirect][ODBC SQL Server Wire Protocol driver][Microsoft SQL Server]Column name or number of supplied values does not match table definition.]

    Hii ..
    need help on this ..
    This what I am doing ..
    I am using a DATAEXPORT function to export level0 data from my essbase 11.1.2.2 to Microsoft SQL 2008 tables.
    So what I did first I exported the level0 data to a flat file using DATAEXPORT and the created the SQL columns by the same  in that order only in my SQL table.
    When I run it fails with this error:
    ODBC Layer Error: [21S01] ==> [[DataDirect][ODBC SQL Server Wire Protocol driver][Microsoft SQL Server]Column name or number of supplied values does not match table definition.]
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1021014)
    ODBC Layer Error: Native Error code [213]
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Error(1012085)
    Unable to export data to SQL table [dataexp]. Check the Essbase server log and the system console to determine the cause of the problem.
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1021002)
    SQL Connection is Freed
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Warning(1080014)
    Transaction [ 0x1c50001( 0x51ee7d66.0x80342 ) ] aborted due to status [1012085].
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1012579)
    Total Calc Elapsed Time for [test.csc] : [1.44] seconds
    =============================================================
    I did a simple test on my Sample.basic application then ..
    loaded the calc data to it and then used the below script to export to a flat file
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    SET DATAEXPORTOPTIONS
                    DataExportLevel "Level0";
                    DataExportOverwriteFile ON;
                    DataExportColFormat OFF;
                    DataExportDimHeader OFF;
    FIX(
                "Jan",
                "Sales",
                "Actual"
    /*DATAEXPORT "File" "," "/home/hypadmin/samtest.txt";*/
    DATAEXPORT "DSN" "Abhitest" "sample" "sa" "welcome1";
    ENDFIX
    out put as below:
    "Sales"
    "100-30","California"
    "Jan","Actual",145
    Now In sql I created only 3 columns with name Jan/Sales/Actual and when I run this script again with comments removed .. I get the same error as what I have got in my first test case with other application ..
    but when I create the columns with same name as what its in export
    Sales/100-30/Califirnia/Jan/Actual
    It created the new rows successfully ..
    So with this I think the error which I am getting with my other application might be because of the same column issue  .. but then I have created all the columns by looking at the export file only as I did in sample ..
    Any idea would be helpful ..
    Thanks
    Abhishek
    I

    First make sure you add
    DataExportRelationalFile ON;
    to your set commands it is missing
    I alwats like to also add
    DataExportColHeader dimensionName;
    so I am sure what dimension is getting put into the columns.
    Then count the number of dimensions in your outline (exclude attribute dimensions). You need at least that many columns in your table  -1 + the number of  members you will be returning as columns in the export
    Taking your example Sample basic has 5 dimensions
    Measures
    Years
    Scenario
    Product
    Market
    Since you did not specify a dataexportcolheader it took the dense dimension Scenario as the columns. Your fix statement is limiting that to one member. Doing the math
    5 -1 + 1 = 5 columns in your table which is what you found works.  Suppose you fixed on bothe Actual and budget in scenario then you would need 6 columns 5 -1 +2

  • Connection failed: SQLState:'01000' SQL Server Error:67 [Microsoft]ODBC SQL Server Driver][DBNETLIB]ConnectionOpen (Connect()). Connection failed: SQLState:'08001' SQL Server Error:17 [Microsoft]ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist o

    Help,
    setup a new sql server 2012 on a windows 2012r2 server to replace old sql server 2005 on an old windows server 2003 machine.  When i test the ODBC connection locally on the server it works fine, however when i try to connect via windows 7 client machine
    i get the following error:
    Connection failed:
    SQLState:'01000'
    SQL Server Error:67
    [Microsoft]ODBC SQL Server Driver][DBNETLIB]ConnectionOpen
    (Connect()).
    Connection failed:
    SQLState:'08001'
    SQL Server Error:17
    [Microsoft]ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied
    I think it must be a permissions thing, I've turned off the firewall for now and still no difference, 've also made sure remote connection is enabled.  I can connect to the other sql server in studio manager on the new machine however, i can't go do
    the same in the old server, says:
    cannot connect to hbfsqlpro1\hbfsqlpro1
    Additonal information a network related or instance specifc error occured while establising a connection to SQL server.  The server was not found or was not accessible.  Verify that the instance name is correct and that SQL server is configured to
    allow remote connections. (provider:SQL Network Interfaces, error 26 - error locationg server/instance specified) (Microsoft SQL server)
    the instance is def correct, as that is what i use to connect locally on the new machine and what it comes up on the studio manager on the new machine.  STarting to pull my hair out somewhat, i'm sure it's something really simple! 

    Hello,
    You are trying to connect to a named instance. Make sure the SQL Server Browser service is started on the SQL Server computer.
    Make sure TCP/IP is enabled.
    http://msdn.microsoft.com/en-us/library/ms191294(v=sql.110).aspx
    Try to disable Windows Firewall or security software on both, SQL Server instance and client computer.
    Test basic connectivity too. Try to ping from the client computer to the SQL Server computer.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'dbo.sp_SPNAMEHERE'.

    OK, something seemed to have changed with my system because this error is NEW. It might be related to my system upgrade from Vista to Win7, but just guessing here.
    I run a database on a corporate MS Sql Server (2005) and an ASP application that connects via ODBC. The real world application works fine, however when I attempt to access Stored Procedures from Dreamweaver (on my development machine)  I am getting the following error:
    [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'dbo.sp_SPNAMEHERE'.
    This only seems to happen on Stored procedures that RETURN a recordset.
    system:
    Win7
    Dreamweaver CS4
    Code: VBScript/Classic ASP
    SQL Server 2005
    Connecting via ODBC: MM_MY_STRING = "Driver={SQL Server};Server=wscxxxxxxxxx;Database=dbsystem;Uid=username;Pwd=XXXXXXXXXXXX"
    Stored procedures that do not return a recordset are not an issue.... this has put my development work at a standstill!!
    Thanks in advance!

    Well, I hate bumps, but I am really running out of solutions. I have now tried to use a system DSN on my development machine and that didnt solve the problem. I just un-installed DW and re-installed it and that didnt solve my problem either.
    This is very frustrating, because I cannot use any stored procs that return recordsets... I am stuck... can anybody think of a relatively easy work-around to working in DW w/ recordsets that come from SPs when you cant actually access them?
    The really weird thing is, when I build the command, and choose the stored proc, and give it valid input variables, and TEST it from the TEST button, everything works and data is returned as expected. Once I click "OK" and actually add it to the ASP page the recordset that should be visible isnt... and when I click the plus sign in the bindings window I get the error...
    Help!!

  • [Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.

    Hi, I've seen questions about this error posted elsewhere but I'm not sure if the same issues applied.
    I'm trying to connect to SQL Server from a VBA macro in excel. I've managed to do this with the code below where my query is return to cells in my active worksheet but for another query I want to run the data to be return is too large for Excel to handle
    and so I'd like to save it as a .csv file but using the second example of my code I get the message "[Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied". Since I have access to this database from the first example
    of the code, I assume my conn.ConnectionString line of code is letting me down.
    Can anyone help me please?
    'Code to return data to worksheet'
    Sub macro2()
    With ActiveSheet.ListObjects.Add(SourceType:=0, Source:=Array(Array( _
            "ODBC;DSN=SQLRA - OPENBET;UID=user1;Trusted_Connection=Yes;APP=Microsoft Office 2013;WSID=pdfdf3001;DATABASE=open;Network=DBMSS" _
            ), Array("OCN;Address=SQLRA_DB,55455;ApplicationIntent=READONLY;")), _
            Destination:=Range("$BG$1")).QueryTable
            .CommandText = Array( _
            "select  A.ev_oc_id, B.ev_mkt_id, A.ev_id, D.start_Time, Upper(Replace(A.[desc],'|','')) , A.result, COALESCE(A.sp_num, A.lp_num) , ", _
            "COALESCE(A.sp_Den, A.lp_Den) from open.reporting.tevoc A, open.reporting.tevmkt B, open.reporting.tevocgrp C, open.reporting.tev D ", _
            "where  A.ev_mkt_id = B.ev_mkt_id and B.ev_oc_grp_id = C.ev_oc_grp_id and D.ev_id = A.ev_id and Upper(Replace(D.[desc],'|','')) = 'home' and upper(B.name) = '|today|' and D.ev_type_id in (264, 289) and D.ev_class_id = 49
    and D.start>= '" & Year & "-" & Month & "-" & Day & "'" _
            .RowNumbers = False
            .FillAdjacentFormulas = False
            .PreserveFormatting = True
            .RefreshOnFileOpen = True
            .BackgroundQuery = True
            .RefreshStyle = xlInsertDeleteCells
            .SavePassword = False
            .SaveData = True
            .AdjustColumnWidth = True
            .RefreshPeriod = 0
            .PreserveColumnInfo = True
            .ListObject.DisplayName = "Table_Query_from_SQLRA___OPEN_1"
            .Refresh BackgroundQuery:=False
        End With
    End Sub
    'Code that produces error'
    Sub macro1()
    Dim conn As ADODB.Connection
    Set conn = New ADODB.Connection
    Dim testSQL As String
    Dim qd As DAO.QueryDef
    Dim openbetdb As Database
        conn.ConnectionString = "driver={SQL Server}; server= sqlra_db;uid=user1;APP=Microsoft Office 2013;WSID=pdfdf3001;database=openbet"
        conn.Open
        testSQL = "SELECT * FROM open.reporting.TevType where ev_class_id = 49 and ev_type_id in(289,330,518,13492);"
        Set qd = Db.CreateQueryDef("tmpExport", testSQL)
        DoCmd.TransferText acExportDelim, , "tmpExport", "C:\\export.csv"
    End Sub

    Hello,
    Are you connect to remote SQL Server? If so,
    please make sure the target SQL Server is running and is listening on appropriate protocols. Please take a look at the following article about general steps to troubleshoot
    SQL connectivity issues:
    http://blogs.msdn.com/b/sql_protocols/archive/2008/04/30/steps-to-troubleshoot-connectivity-issues.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • How to check file is exists  in specified path in content server or not

    i m using JDevloper 11.1.1.6.0
    I want to upload file using RIDC functions,but before uploading it i have to check wheather it is already present on specified path in content server or not.
    How i check it.

    I tried to write a (simpler) version of my own code:
        public static Results CheckInToFolder(File f) {
            // create the binder
            DataBinder checkinDoc = idcClient.createBinder();
            // populate the binder with the parameters
            checkinDoc.putLocal("IdcService", "CHECKIN_UNIVERSAL");
            checkinDoc.putLocal("dDocTitle",
                                "Document checked in through RIDC at " +
                                new Date());
            checkinDoc.putLocal("dDocType", "Document");
            checkinDoc.putLocal("dDocAccount", "");
            checkinDoc.putLocal("dSecurityGroup", "Public");
            checkinDoc.putLocal("dCollectionID", "909964822906001607");
            // add a file
            // execute the request
            try {
                checkinDoc.addFile("primaryFile", f);
            } catch (IOException e) {
                myExecutable.logEvent("File" + f.getName() + " not found.");
                return null;
            ServiceResponse checkinResponse;
            try {
                checkinResponse = idcClient.sendRequest(userContext, checkinDoc);
                myExecutable.logEvent("Check-in successful. Size:" + f.length() + " bytes");
            catch (oracle.stellent.ridc.protocol.ServiceException e) {
                            myExecutable.logEvent("ServiceException");
                            e.printStackTrace();
                            return null;   
            catch (IdcClientException e) {
                myExecutable.logEvent("Check-in failed.");
                e.printStackTrace();
                return null;
            DataBinder checkinData;
            try {
                checkinData = checkinResponse.getResponseAsBinder();
                Results res =
                    new Results(checkinData.getLocal("dID"), checkinData.getLocal("dDocName"));
                myExecutable.logEvent("Successfully got response - dID is " +
                                      res.getDID() + ", dDocName is " +
                                      res.getDDocName());
                return res;
            catch (oracle.stellent.ridc.protocol.ServiceException e) {
                            myExecutable.logEvent("ServiceException2");
                            //e.printStackTrace();
                            return null;   
            catch (IdcClientException e) {
                myExecutable.logEvent("Unable to get response.");
                e.printStackTrace();
            return null;
        }What I'm getting is this:
    Mon Aug 13 14:51:29 CEST 2012 0ms: Started
    Mon Aug 13 14:51:29 CEST 2012 57ms: Connection to idc://192.168.44.129:4444 successfully established.
    Mon Aug 13 14:51:29 CEST 2012 102ms: Check-in successful. Size:702 bytes
    Mon Aug 13 14:51:29 CEST 2012 5ms: ServiceException2
    Mon Aug 13 14:51:29 CEST 2012 0ms: Finished
    This means:
    a) it does, indeed, return the exception (oracle.stellent.ridc.protocol.ServiceException)
    b) you could use this mechanism for your code
    c) it is, indeed, primaryFile.name what's being checked
    I will also take a look at the other service to perform the check prior to check-in service call.

  • Lotus Notes Folder Not Found in Server Path..

    Hi..
    I am new to portal development..:)..
    Want to ask about Lotus Notes in PDK..
    I've downloaded the latest PDK thinking in the Portal Server, they not yet install and configure the PDK.
    But, when i checked in the server, actually there is already PDK installed..
    But, the problem is..
    Now, i want to do Lotus Notes Portlet..
    There is no Lotus Notes folder in the server..
    so, i am not sure how to follow the step in the userguide..
    "$IAS_HOME(MID_TIER)/j2ee/OC4J_PORTAL/applications/lotusnotes/lotusnotes/WEB-INF/lib directory. "
    How do i created a new Folder "lotus Notes" like the path above?
    Could anybody help me here?...plzz...

    The PDK you are seeing in your server installation must be an old version that comes along with the Oracle9iAS installation. The Lotus Notes Portlets come with the latest PDK download. need to upgrade the existing PDK installation to thios latest one to get the lotusnotes installed. Please follow the instructions in the upgrading.9020x.to.90240.html doc available in the PDK download extract at PDK_extract_dir\pdk\pdk\jpdk\v2 directory. Please feel free to get back if you havce any further issues.

  • Mail does not retain correct external server path for Exchange Server '07 even when "automatically detect and maintain account settings" is unchecked. Advice?

    Mail keeps resetting the external server path for an Exchange server '07 account when the program is closed and reopened. This happens even though "automatically detect and maintain account settings" is unchecked. To reset to the correct setting I need to disable the account, make the change and save with the account disabled, close Mail, reopen Mail, and enable the account. Then the settings are maintained and Mail works great... until Mail is closed and reopened again. At that point the server path reverts to an incorrect setting. Anyone else experiencing this? Advice? I don't think this is a problem with the Exchange server because this problem did not happen with OS X Mavericks.

    This this to fix repeated password requests....
    Open Keychain Access in Applications/Utilities
    Search for your Dreamhost accounts. There should be two entries (incoming, outgoing) for each account.
    It's not uncommon to find old entries. You might want to delete all and start clean.The Keychain isn't smart and will keep all old entries when you add/change a password.
    While you are in the Keychain run Keychain First Aid, Under Keychain Access in the Menu bar.
    Open Mail
    Open Connection Doctor.
    If you see red for the account, enter the password again.
    If you continue to have problems, delete the account then add it back.

  • Windows Server 2012 - Printing using UNC path not working

    Hi,
    I have a problem printing using the printer's UNC path ("\\Server_Name\Printer_Hostname") to work with a web
    app hosted on IIS 8. With a windows forms application the UNC path is working fine and the app prints.
    With
    the web app I receive an error "The data area passed to a system call is tool small". 
    Also,
    in the event viewer under Applications and Services Logs -> Microsoft -> PrintService -> Operational, I receive the error "The print spooler failed to reopen an existing printer connection because it could not read the configuration information
    from the registry key S-1-5-82-1980832875-2702362896-1795126167-3622310632-1152289074\Printers\Connections. The print spooler could not open the registry key. This can occur if the registry key is corrupt or missing, or if the registry recently became unavailable."

    I have contacted IIS forum support.
    Please review the link: http://forums.iis.net/p/1213109/2079229.aspx?Re+Windows+Server+2012+Printing+using+UNC+path+not+working
    Their final response:
    Printing from ASP.NET using System.Drawing.Printing itself is a horrible approach, as this namespace was designed for Windows Forms only. The designers did not take everything about ASP.NET in mind, so any issue can happen. That can answer why the HP model
    works while the Samsung fails, as the HP one just "happens
    to work",
    http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx
    Similarly, System.Printing was designed just for WPF.
    About which printing API to use in ASP.NET/IIS, there is no clear answer so far. Thus, your only resource is Microsoft support, who can perform further analysis (with their dedicate utilities and of course Windows source code) and might come across a solution
    to help you out. This is not a trivial scenario.

  • File path not found

    hi
    i am using
    parameters:p_file like rlgrap-filename,
    to read the path for the file,
    if the file is not found.
    it should mention enter correct file path.
    how do i handle this scenario.

    You can check the SY-SUBRC returned form the UPLOAD FM.
    Like:
      DATA: L_FILE TYPE STRING.
      L_FILE = P_LFILE.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
        EXPORTING
          FILENAME            = L_FILE
          HAS_FIELD_SEPARATOR = 'X'
        CHANGING
          DATA_TAB            = IT_FILE
        EXCEPTIONS
          FILE_OPEN_ERROR     = 1
          FILE_READ_ERROR     = 2
          OTHERS              = 18.
      if sy-subrc <> 0.       "<<
        message e398(00) with 'Error while opening a file'.
      endif.
    You can add the File Selection Pop up for the file on the presentation server.
    Like:
    PARAMETERS:       P_LFILE TYPE CHAR70 OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_LFILE.
      PERFORM F4_LOCAL_FILE.
    FORM F4_LOCAL_FILE .
      DATA: LT_FILES TYPE FILETABLE,
            LW_FILES TYPE FILE_TABLE,
            RC       TYPE SY-SUBRC,
            L_TYPE   TYPE STRING.
      L_TYPE = '*.txt'.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
        EXPORTING
          WINDOW_TITLE            = 'Raw data for RFBIBL00'
          DEFAULT_FILENAME        = L_TYPE
        CHANGING
          FILE_TABLE              = LT_FILES
          RC                      = RC
        EXCEPTIONS
          FILE_OPEN_DIALOG_FAILED = 1
          CNTL_ERROR              = 2
          ERROR_NO_GUI            = 3
          OTHERS                  = 4.
      IF SY-SUBRC <> 0.
        MESSAGE E398(00) WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get file selected
      READ TABLE LT_FILES INDEX 1 INTO LW_FILES.
      MOVE LW_FILES-FILENAME TO P_LFILE.
    ENDFORM.                    " F4_local_file
    Regards,
    Naimesh Patel

  • ESSBase studio server is not running

    Dear All,
    When I run ESSBase studio server, I get below error. Kindly advice me on this.
    C:\Hyperion\products\Essbase\EssbaseStudio\Server>call ""C:\Hyperion\common\config\9.5.0.0"\setJavaRuntime.bat"
    Log file location is:
    C:\Hyperion\logs\esbstudio\server.log
    18:49:34 12/29/09 INFO Starting up
    18:49:34 12/29/09 INFO Oracle Essbase Studio Server. Version 11.1.1.3.00, Build 090, June 25 2009
    18:50:41 12/29/09 (system) WARNING Failed to load driver for sap
    18:50:41 12/29/09 (system) SEVERE Cannot load Teradata connector
    18:50:41 12/29/09 (system) WARNING Failed to load driver for teradata
    18:50:41 12/29/09 (system) WARNING Failed to load driver for mysql
    18:50:41 12/29/09 (system) WARNING Failed to load driver for netezza
    18:50:41 12/29/09 (system) SEVERE Cannot initialize catalog storage. Make sure that server.properties has correct information
    -------------- Exception --------------
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: Cannot initialize data storage engine
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:53)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    Caused by: com.hyperion.cp.datasources.exploration.sql.SqlExplorerException: Sql exploration exception
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.performExploration(SqlExplorer.java:237)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.explore(SqlExplorer.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:49)
    ... 11 more
    Caused by: com.hyperion.cp.driver.util.DriverException: Data Driver for url '%s' is absent or failed to initialize. Please see server start
    p log for more information.
    at com.hyperion.cp.driver.ConnectionManager.getConnection(ConnectionManager.java:102)
    at com.hyperion.cp.driver.DriverEngine.getConnection(DriverEngine.java:60)
    at com.hyperion.cp.driver.DriverEngine.executeStringQuery(DriverEngine.java:131)
    at com.hyperion.cp.datasources.exploration.Explorer.executeStringQuery(Explorer.java:138)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.getCatalogs(SqlExplorer.java:456)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.exploreSources(SqlExplorer.java:261)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.performExploration(SqlExplorer.java:195)
    ... 13 more
    Thanks in advance,
    Best,
    Veeranna Ronad.

    Hi,
    The content of the server.properties is given below. Even after making suggested changes, the server is not running.
    I am running the server from the path "C:\Hyperion\products\Essbase\EssbaseStudio\Server\stopServer.bat".
    server.properties
    catalog.autoinit=true
    catalog.username=prototype_int
    transport.port=5300
    catalog.url=oracle\://10.1.126.248\:1521/ORCL
    catalog.password=T1JBQ0xF
    catalog.db=prototype_int
    server.hss.bpmApplication=BPM\:73317
    Below is the error.
    C:\Hyperion\products\Essbase\EssbaseStudio\Server>call ""C:\Hyperion\common\config\9.5.0.0"\setJavaRuntime.bat"
    Log file location is:
    C:\Hyperion\logs\esbstudio\server.log
    17:56:32 01/15/10 INFO Starting up
    17:56:32 01/15/10 INFO Oracle Essbase Studio Server. Version 11.1.1.3.00, Build 090, June 25 2009
    javax.crypto.IllegalBlockSizeException: Input length must be multiple of 8 when decrypting with padded cipher
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
    at javax.crypto.Cipher.doFinal(DashoA12275)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decrypt(Encrypter.java:103)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decryptString(Encrypter.java:130)
    at com.hyperion.cp.util.PropertyManager.getProperty(PropertyManager.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:33)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    17:56:38 01/15/10 (system) WARNING Failed to load driver for sap
    17:56:39 01/15/10 (system) WARNING Failed to load driver for mysql
    17:56:39 01/15/10 (system) WARNING Failed to load driver for netezza
    17:56:40 01/15/10 (system) SEVERE Cannot establish connection to Oracle server
    javax.crypto.IllegalBlockSizeException: Input length must be multiple of 8 when decrypting with padded cipher
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
    at javax.crypto.Cipher.doFinal(DashoA12275)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decrypt(Encrypter.java:103)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decryptString(Encrypter.java:130)
    at com.hyperion.cp.util.PropertyManager.getProperty(PropertyManager.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:33)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    17:56:40 01/15/10 (system) SEVERE Cannot establish connection to Oracle server
    17:56:40 01/15/10 (system) SEVERE Cannot initialize catalog storage. Make sure that server.properties has correct information
    -------------- Exception --------------
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: catalog.CatalogInitializationException.StorageInitializationFailure
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(StorageFactory.java:155)
    at com.hyperion.cp.catalog.transaction.TransactionManager.initialize(TransactionManager.java:64)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:98)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(StorageFactory.java:149)
    ... 12 more
    Caused by: com.hyperion.cp.catalog.exceptions.CatalogInitializationException: No table PROTOTYPE_INT.CP_NONE_TRANSACTIONS found
    at com.hyperion.cp.catalog.storage.StorageEngine.validateSignature(StorageEngine.java:193)
    at com.hyperion.cp.catalog.storage.StorageEngine.<init>(StorageEngine.java:87)
    at com.hyperion.cp.catalog.storage.SQLStorageEngine.<init>(SQLStorageEngine.java:20)
    ... 17 more
    Thanks in advance,
    Best,
    Veeranna Ronad.
    Edited by: Ronad on Jan 15, 2010 4:02 PM
    Edited by: Ronad on Jan 15, 2010 5:58 PM

  • Manaed server is not running

    Hi,
    I have a request regaring Manager Server as im ubable to setart the maagerd server.
    I have installed SOA on Windows 7 64-bit environemnt and I installed JDK1.6 64-bit version.
    Iam able start the Admin Server from command prompt using startWebLogic.cmd (C:\Oracle\Middleware\user_projects\domains\soa_domain) script.
    But im unable to start the Manager Server using startManagedWebLogic.cmd(C:\Oracle\Middleware\user_projects\domains\soa_domain\bin) script, also here i entered the Username/Passowrd in script itself as i was facing befoer some other problems like JVM Hook Shutdown.
    After setting UserName/Password in startManagedWebLogic.cmd, here im getting followin errors. Please provide me any suggestions.
    Here im putting my errors, but seems to be that error log is too heavy. But help me on this any of you.
    Also, as my log file is too big, im putig partial log informaiton,
    <1300845391497> <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)
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <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)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <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)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <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)
         >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <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)
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <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)
         >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <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)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <BEA-000286> <Failed to invoke startup class "SOAStartupClass", java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
    java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Info> <Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391528> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    bam.oracle.home = C:\Oracle\Middleware\Oracle_SOA1
    common.components.home = C:\Oracle\MIDDLE~1\ORACLE~1
    domain.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1
    em.oracle.home = C:\Oracle\Middleware\oracle_common
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    igf.arisidbeans.carmlloc = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1\config\FMWCON~1\carml
    igf.arisidstack.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1\config\FMWCON~1\arisidprovider
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.headless = true
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404534>
    <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean UIX#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404581> <BEA-149205> <Failed to initialize the application 'UIX [LibSpecVersion=11,LibImplVersion=11.1.1.1.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404597> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404597> <BEA-149205> <Failed to initialize the application 'adf.oracle.domain [LibSpecVersion=1.0,LibImplVersion=11.1.1.2.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404612> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain.webapp#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.view_11.1.1\adf.oracle.domain.webapp.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404628> <BEA-149205> <Failed to initialize the application 'adf.oracle.domain.webapp [LibSpecVersion=1.0,LibImplVersion=11.1.1.2.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.view_11.1.1\adf.oracle.domain.webapp.war
    for oracle.pwdgen#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.pwdgen_11.1.1\pwdgen.jar
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405257> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean oracle.rules#[email protected]. Error - weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.ejb.container.deployer.EJBDeploymentFactory.findOrCreateComponentMBeans(EJBDeploymentFactory.java:68)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.rules_11.1.1\rules.jar (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    pl.java:48)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405803> <BEA-149205> <Failed to initialize the application 'oracle.soa.b2b [LibSpecVersion=11.1.1,LibImplVersion=11.1.1]' due to error weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.ejb.container.deployer.EJBDeploymentFactory.findOrCreateComponentMBeans(EJBDeploymentFactory.java:68)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.b2b_11.1.1\oracle.soa.b2b.jar (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Info> <J2EE> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-160151> <Registered library Extension-Name: oracle.soa.worklist.webapp, Specification-Version: 11.1.1, Implementation-Version: 11.1.1 (WAR).>
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean DMS Application#11.1.1.1.0. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-149205> <Failed to initialize the application 'DMS Application [Version=11.1.1.1.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405896> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsil-wls. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.webservices_11.1.1\wsil-wls.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405912> <BEA-149205> <Failed to initialize the application 'wsil-wls' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.webservices_11.1.1\wsil-wls.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405928> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsm-pm. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.wsm.pm_11.1.1\wsm-pm.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405928> <BEA-149205> <Failed to initialize the application 'wsm-pm' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.wsm.pm_11.1.1\wsm-pm.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405959> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean usermessagingserver. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405974> <BEA-149205> <Failed to initialize the application 'usermessagingserver' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at java.util.zip.ZipFile.open(Native Method)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\MQSeriesAdapter.rar (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\MQSeriesAdapter.rar
         at java.util.zip.ZipFile.open(Native Method)
    r1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406676> <BEA-002903> <Creating WorkManager from "wm/SOAWorkManager" WorkManagerMBean for application "OracleBamAdapter">
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406692> <BEA-149205> <Failed to initialize the application 'OracleBamAdapter' due to error weblogic.application.ModuleException: Error creating WLDF descriptor from META-INF/weblogic-diagnostics.xml.
    weblogic.application.ModuleException: Error creating WLDF descriptor from META-INF/weblogic-diagnostics.xml
         at weblogic.diagnostics.module.WLDFModule.initDescriptor(WLDFModule.java:607)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\OracleBamAdapter.rar (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\OracleBamAdapter.rar
    >
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406708> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean soa-infra. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
    >
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406708> <BEA-149205> <Failed to initialize the application 'soa-infra' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    Appreciate your suggestions on ths.
    Thanks
    Munnelli

    Hi Anuj,
    Thanks for you help on the same as i was not able to start the ManagedServer.
    I am able to start the Managed Serer after I made entry for Weblogic UserName and Password in startManagedServer.cmd.
    If I remove those two entries it immdeatly shutting down like JVM Hook shutdown.
    Now, im able to start the server but still im geting few errors as below
    (here im sening patial error details as log file is too big)
    ####<Mar 23, 2011 11:42:36 PM IST> <Warning> <JMX> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000008> <1300903956817> <BEA-149509> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001/jndi/weblogic.management.mbeanservers.domainruntime.
    java.io.IOException
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:195)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:83)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:216)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:136)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:90)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
         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)
    Caused By: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:787)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:368)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:177)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:83)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:216)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:136)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:90)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
         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)
    Caused By: java.net.ConnectException: t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:401)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
         at weblogic.server.ServerLifeCycleRuntime.getLifeCycleOperationsRemote(ServerLifeCycleRuntime.java:1083)
         at weblogic.security.utils.AdminServerListener.startDisconnectListener(AdminServerListener.java:113)
         at weblogic.security.utils.AdminServerListener.onConnect(AdminServerListener.java:157)
         at weblogic.server.channels.RemoteChannelServiceImpl$2.run(RemoteChannelServiceImpl.java:291)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:254)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:197)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:200)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:401)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
         at weblogic.server.ServerLifeCycleRuntime.getLifeCycleOperationsRemote(ServerLifeCycleRuntime.java:1083)
         at weblogic.security.utils.AdminServerListener.startDisconnectListener(AdminServerListener.java:113)
         at weblogic.security.utils.AdminServerListener.onConnect(AdminServerListener.java:157)
         at weblogic.server.channels.RemoteChannelServiceImpl$2.run(RemoteChannelServiceImpl.java:291)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Mar 23, 2011 11:42:37 PM IST> <Warning> <Log Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000a> <1300903957644> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<Mar 23, 2011 11:42:37 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903957675> <BEA-010060> <The Message-Driven EJB: NotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<Mar 23, 2011 11:42:37 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903957784> <BEA-010060> <The Message-Driven EJB: TaskNotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <J2EE> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958049> <BEA-160151> <Registered library Extension-Name: bea_wls_async_response (JAR).>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958080> <BEA-010060> <The Message-Driven EJB: TestFwkEmulatorBean has connected/reconnected to the JMS destination: jms/testfwk/TestFwkQueue.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958346> <BEA-010060> <The Message-Driven EJB: MessageDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMWSRcvQ1.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958689> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceHttps for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958798> <BEA-010060> <The Message-Driven EJB: MessageDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMAppDefRcvQ1.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958860> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceJms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958907> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseService for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958954> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Jms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959001> <BEA-010060> <The Message-Driven EJB: DriverDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMDriverDefSndQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903959016> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903959141> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Https for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959235> <BEA-010060> <The Message-Driven EJB: MessageForwarderBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineSndQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959422> <BEA-010060> <The Message-Driven EJB: MessageReceiverBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineRcvQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040010> <JMSServer "SOAJMSServer" configured no session pools.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040109> <JMSServer "SOAJMSServer" is started.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040010> <JMSServer "UMSJMSServer_auto_2" configured no session pools.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959469> <BEA-040109> <JMSServer "UMSJMSServer_auto_2" is started.>
    ####<Mar 23, 2011 11:42:40 PM IST> <Notice> <WebLogicServer> <Bharathi> <soa_server1> <main> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000003> <1300903960560> <BEA-000365> <Server state changed to RUNNING>
    ####<Mar 23, 2011 11:42:40 PM IST> <Notice> <WebLogicServer> <Bharathi> <soa_server1> <main> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000003> <1300903960576> <BEA-000360> <Server started in RUNNING mode>
    ####<Mar 23, 2011 11:42:41 PM IST> <Info> <WorkManager> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000012> <1300903961184> <BEA-002903> <Creating WorkManager from "wm/SOAWorkManager" WorkManagerMBean for application "bea_wls_deployment_internal">
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963167> <BEA-001516> <Connection Pool "EDNLocalTxDataSource" connected to Database: "Oracle", Version: "Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production".>
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963167> <BEA-001517> <Connection Pool "EDNLocalTxDataSource" using Driver: "Oracle JDBC driver", Version: "11.1.0.7.0-Production".>
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963323> <BEA-000628> <Created "1" resources for pool "EDNLocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@203124a4> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-000628> <Created "1" resources for pool "EDNLocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-001516> <Connection Pool "EDNDataSource" connected to Database: "Oracle", Version: "Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production".>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-001517> <Connection Pool "EDNDataSource" using Driver: "Oracle JDBC driver", Version: "11.1.0.7.0-Production".>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964851> <BEA-000628> <Created "1" resources for pool "EDNDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:45 PM IST> <Info> <Common> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000013> <1300903965365> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:47 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3f582c55> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903967643> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:47 PM IST> <Info> <Common> <Bharathi> <soa_server1> <FabricScheduler_QuartzSchedulerThread> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000014> <1300903967643> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:43:32 PM IST> <Warning> <Log Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000015> <1300904012528> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<Mar 23, 2011 11:43:33 PM IST> <Info> <Health> <Bharathi> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000016> <1300904013119> <BEA-310002> <55% of the total memory in the server is free>
    Please help me on this to make it properly.
    Appriceate your suggestions.
    Thanks

  • Server 2012 not visable in AD after IP change

    Running a single server 2012 in this environment so it hosts everything such as AD, DHCP, DNS etc.
    I changed the network IP scope due to VPN issues for users who connect from home networks using the same IP range.  During the IP range change I changed the servers own static IP addresses, reconfigured DHCP scope and reservations and the DNS server.
    Everything in the network is working properly expect that this single server does not show up for clients looking in their Network list of computers.
    I've missed something in the process but not sure what that something is. Any ideas how to get the server to reappear?
    Thanks

    Under the "Everything in the network is working properly" heading, I presume this means dns resolution is functional, users are being authenticated, able to release/renew ip addresses, etc.  I hear you saying it's just the browsing issue.
    Network Discovery in my experience is based on broadcast traffic and therefore less reliable than, for example, the DNS table.  So there are a few angles here.
    -It's conceivable that through time and a refreshing of the caches both on the networking equipment and at the clients that this will pick back up for you.
    -You might consider refreshing or rebooting the router so that it repopulates it's tables and the aforementioned cache can be ruled out.
    -I suggest picking a client to test from.  Restart and see if it picks back up. a difference. Map a drive or browse the UNC path of a share from the Run line and see if the server then populates. 
    These are just some suggestions to get you started. Let me know what shakes out, as there are certainly many more things to try based on what you're seeing.  Hope this helps.

Maybe you are looking for

  • My iPod touch 4g won't connect to the internet, what do I do?

    My ipod touch 4g isn't going on to the internet, It's my SECOND IPOD TOUCH 4G WHITH PROBLEMS! The first iPod touch i had it swiched off while charging and i could not get it to switch on agian. NOW THIS! This iPod is starting to be a Freaking problem

  • Profile issue in export workflow when PS is editor but not within Ap

    Aperture is with me on my MBP (with Elements as the external editor). My place of work is not graphics related, so it doesn't have Ap but does have PS CS8, which I've used happily for a long time, for their needs and I can use it for mine as well. So

  • WebDynpro accessing custom-build EJB applications

    Hi there, I have a query regarding WebDynpro accessing custom-build applications deployed on web-logic server and J2EE servers.Following is the scenario. There is central authentication mechanism deployed in J2EE server. GUI users (in EP) have to be

  • Workflow workitem deletion

    Hi    I am triggering my workitem using FM SWE_EVENT_CREATE in this FM i am getting the event id  but for my requirement i want the workitem id so any body tell me how to get the workitem id . thanks srinivas

  • How to rename albums purchased through the itunes store?

    Hello, I am having problems renaming albums that I purchased through itunes.  I bought the Black Sabbath Complete Studio Albums 1970-1978 and the Rush Complete Mercury years or whatever it is.  Anyway, the album titles are all listed as the same, eve