TestStand 4.2 Error String not found in language resource files

I've installed TestStand 4.2 on two Windows XP machines.  On one machine it worked fine first time. On the other machine I receive the following message in the login box, and also in the templates pane:  'String not found in language resource files." I have tried uninstalling and re-installing TestStand twice but still get this error.  This error prevents me being able to login as an administrator so I am unable to use TestStand 4.2. I understand that these language resource files are provided by the installer but for some reason it seems that the machine with the error cannot locate these.
The only difference between the two XP machines that I can find is the location of user profiles.  I note that on Vista compatible TestStand versions that TestStand user settings are stored to C:\Documents and Settings\All Users\Documents\National Instruments\TestStand 4.2\Components on XP machines.  On the XP machine with the error all user profiles are stored under C:\profiles, rather than C:\Documents and Settings.  This is the standard profile used by our company so I am unable to change this. The TestStand installer does recognise this and installs TestStand user settings to  C:\profliles\All Users\Documents\National Instruments\TestStand 4.2\.  Does anyone know whether the location of the user profiles is important, or whether there is another cause for this error?
Regards,
David
Solved!
Go to Solution.

Hi Scott,
I've held off on the changes suggested by John for now.  You are correct in that the knowledge base article referenced by John does not apply since the engine does initialise. 
I've attached two screen shots.  The first one is the standard login box which displays the "String Not found in language resource files" message in place of the usual "administrator" user name.  If I overwrite the  "String Not found in language resource files" user name with "administrator" and click OK to log in then I get an "Invalid User Name" error dialogue box. Therefore I am unable to log into TestStand.
The second screen shot shows the TestStand sequence editor with the String Not found in language resource files visible in the templates pane.
Regards,
David
Attachments:
TS Login Prompt.JPG ‏11 KB
TS Seq Editor.JPG ‏75 KB

Similar Messages

  • UWL ABAPWebdynpro Launch Error - 404 not found

    I have a created a Workflow Custom Task and linked it with the ABAP Webdynpro application (no parameters) in SWFVISU.
    In the Portal>System Admin>System Config, i have registered item types for all systems.
    The problem is When i try to execute the work item , instead of launching the ABAP Webdynpro application, i get the error '404 Not found The Requested resource does not exist'.
    This Service is activeted along with other required activations in SICF.
    Any ideas about what I might be missing here?
    Thanks,
    Saurabh

    Hi,
    1. Check the UWL Config which is in High Priority, within that config check for the Task Item and see if everything is been passed.
    If the first option doesn't work, here is an alternative:
    2. Create a iView for the Web Dynpro ABAP application in Portal and get the PCD URL of the object created.
    Take a backup of the existing config and replace the definition for the task item in discussion.
    <ItemType name="uwl.task.webflow.Task Item Number.System Alias" connector="WebFlowConnector" defaultView="com.sap.pct.erp.ess.leaverequest" defaultAction="launchIView" executionMode="pessimistic">
          <ItemTypeCriteria systemId="System Alias" externalType="Task Item Number" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchIView" groupAction="no" handler="SAPAppLauncher"  returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="SAPIntegrator" value=" ROLES:// give the PCD URL which you created***"/>
                </Properties>
            </Action>
          </Actions>
        </ItemType>
    And after replacing the content upload the new config to UWL in High Priority.
    Hope this helps.
    Cheers-
    Pramod

  • 5.0 won't work - extensions message is "localized string not found".  When I force it to try to load a new window it shows a gray screen with the bookmarks on top then immediately closes and wants to report the error. Has been this way since 5.0 came out.

    I first tried downloading Safari when the 5.0 update came out last year.  When I choose the app in the dock, I get the blue top bar (Safari, File, etc) but nothing else loads.  I uninstalled the app and tried again several times, but no success. For over a year now I've used Firefox as a result.  Today I thought I'd try again, but same results.  When I choose "new window" in the file menu, I get a small gray window with my bookmarks on top, then in a few seconds, the app quits unexpectedly and the report an error screen appears.  I've unchecked all the languages in the information area for the app, cleared all history, cookies, and cache.  Still the extensions tab in the preferences area has "LOCALIZED STRING NOT FOUND" in 4 places.  It won't show what that means when I click the "?".  Will I ever be able to use Safari again?

    Perform the suggestions mentioned in the following articles:
    * [[Firefox is already running but is not responding]]
    -> Profile in use
    * [http://kb.mozillazine.org/Profile_in_use]
    Check and tell if its working.

  • Error(23,19): method getName(java.lang.String) not found in class javax.swi

    Hi , when i try to run my program, i keep getting the error msg:
    Error(23,19): method getName(java.lang.String) not found in class javax.swing.JTextField
    I have checked the java API and it inherits from the awt.Component class and should be accessible via the jtextfield.
    I have tried the following:
    trying to initailise the JTextField at the start.
    Using getName works if i use it within the loop after setting the name.
    Does anybody know what i am doing wrong please?
    public class clsMember extends JPanel implements ActionListener {
        private JButton jbtnLog;
        private String surname;
        private JTextField txtItem;
        public clsMember() {
            super(new SpringLayout());
            makeInterface();
            surname = txtItem.getName("Surname").toString();
    private void makeInterface() {
         //code omitted
               for (int i = 0; i < numpairs; i++) {
                JLabel l = new JLabel(strLabels, JLabel.LEADING);
    this.add(l);
    //if the array item is salutation create a combobox
    if (strLabels[i] == "Salutation") {
    jcomSalutation = new JComboBox(strSalutation);
    jcomSalutation.setSelectedIndex(0);
    this.add(jcomSalutation);
    } else {
    txtItem = new JTextField(10);
    l.setLabelFor(txtItem);
    txtItem.setName(strLabels[i].replaceAll(" ", "")); //this is where the label is set and if i do a system.out it shows fine. getName works here too.
    this.add(txtItem);
    //code omitted

    If i have a loop that creates the jtextfields such as
                    txtItem = new JTextField(10);
                    l.setLabelFor(txtItem);
                    txtItem.setName(strLabels.replaceAll(" ", ""));
    this.add(txtItem);How is it then possible to assign to a string the value of a *specific jtextfield*. Lets say that one of these JTextfields has the name surname.
    How is it possible for me to writeString surname = surnamejtextfield.getText();                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • String not found in Table

    I get a String not found in table on one of the Tabs in the properties area of many of my steps in TestStand. I had this error once before and it was due to the switch exec not being installed. I have downloaded the NISwitch and installed it yet I still have the error. Any ideas?

    Hello Marc,
    The Sequence Editor looks for those strings in the following INI file:
    C:\TestStand\Components\NI\Language\English\TestStandStrings.ini
    This INI file should have all the keys corresponding to the Switching tab under the [SEQUENCE_PROP_DLG] section. I am attaching the INI file that you can use instead of yours. You do NOT need to have Switch Executive installed for this INI to have the Switching keys. They all should come by default. This INI file didn't contain these keys in TestStand 2.0 since the Switching part was added in TestStand 2.0.1. The only reason for you getting the "String not found in table" error (that I can think of) is if somehow you are using the INI file for TestStand 2.0 instead of the new for
    TestStand 2.0.1.
    I think that using the attached INI file will solve your problem.
    Regards,
    Carlos Leon
    Applications Engineer
    National Instruments
    Attachments:
    TestStandStrings.ini ‏413 KB

  • Localized string not found & menu will not display in Vista

    I have had an issue since late version 3 on my Vista Home Premium PC, when I installed a new copy and started seeing no menu, and the bookmarks and right-clicks respond with "Localized string not found..."
    I have tried the cleanup in a previous message in this forum - to delete the safari folders c:\users\xxx\appdata\Local\ - once I reinstall the current version, I have the same issue. I see the previous query was closed, or I would have replied to that.
    I am testing software for a web-based application, and we support Safari, so this is pretty important that we solve this - though I would be happy as a clam to drop support for Safari on the PC - that likely isn't going to happen. I have had no such issues on my G4 running OSX 10.4.

    Thanks!
    Okay ... I suspect that one of the en.lproj folders (English language resource files) for your Safari or your Apple Application Support has been blown up. So we'll try swapping out both your Safari and your Apple Application Support, taking a few other explicit precautions along the way, just in case. Best to print out a copy of these instructions, because at one stage of proceedings you won't be able to use a web browser.
    First download and save a copy of the SafariSetup.exe (installer file) from the Apple Website. Don't run the install online and don't start the install from the SafariSetup.exe just yet.
    http://www.apple.com/safari/download/
    Quit iTunes and/or QuickTime if you have them installed and running. (They both use Apple Application Support and can interefere with the Apple Application Support uninstall if you have them running.
    Now head into your "Uninstall a program" control panel. Uninstall safari. Uninstall Apple Application Support.
    (If you get any error messages during the uninstalls, halt proceedings and post back to let us know what they say. Precise text, please.)
    Next, we'll clear away any leftover program folders and files.
    Go "Start > Computer".
    In "Computer", open "Local Disk C:" or whichever drive your program files are installed on.
    Open the "Program files" folder.
    Right-click on the "Safari" folder (if it still exists) and select "Delete".
    Open the "Common Files" folder.
    Open the "Apple" folder.
    Right-click on the "Apple Application Support" folder (if it still exists) and select "Delete".
    Empty your recycle bin and restart the PC. (If iTunes is installed on the PC, you'll probably receive a message at this stage saying that iTunes will not run because Apple Application Support is missing. Click through the message.)
    (If you get any error messages during the program files/folders deletions, halt proceedings and post back to let us know what they say. Precise text, please.)
    After the PC restarts, do not open any applications. Disconnect from your network and/or the internet. Now shut down all your security software (firewall, antivirus, antispyware).
    Now start the Safari reinstall by doubleclicking the SafariSetup.exe you downloaded earlier. (This should also reinstall Apple Application Support.)
    Reenable all security software prior to reconnecting to your network and/or the internet.
    Did the reinstall go through okay? If so, do you have your Safari right-click contextual menus back again?

  • ORA-01882: timezone region string not found

    when i execute a package i am getting the following errror
    ORA-01882: timezone region string not found
    When i checked the net i found out the following solution
    Cause: The specified region name was not found.
    Action: Please contact Oracle Customer Support.
    How can i proceed
    how can i contact oracle support or any other solution to this problem

    Hi ,
    I pasted below some Oracle points about TIMEZONE......
    TIMESTAMP WITH LOCAL TIME ZONE Datatype
    The datatype TIMESTAMP WITH LOCAL TIME ZONE, which extends the datatype TIMESTAMP, includes a time-zone displacement. The time-zone displacement is the difference (in hours and minutes) between local time and Coordinated Universal Time (UTC)—formerly Greenwich Mean Time. You can also use named time zones, as with TIMESTAMP WITH TIME ZONE.
    The syntax is
    TIMESTAMP[(precision)] WITH LOCAL TIME ZONE
    where the optional parameter precision specifies the number of digits in the fractional part of the seconds field. You cannot use a symbolic constant or variable to specify the precision; you must use an integer literal in the range 0 .. 9. The default is 6.
    This datatype differs from TIMESTAMP WITH TIME ZONE in that when you insert a value into a database column, the value is normalized to the database time zone, and the time-zone displacement is not stored in the column. When you retrieve the value, Oracle returns it in your local session time zone.
    In Example 3-4, you declare a variable of type TIMESTAMP WITH LOCAL TIME ZONE:
    Example 3-4 Assigning a Literal Value to a TIMESTAMP WITH LOCAL TIME ZONE
    DECLARE
       logoff TIMESTAMP(3) WITH LOCAL TIME ZONE;
    BEGIN
    --   logoff := '10-OCT-2004 09:42:37.114 AM +02:00'; raises an error
       logoff := '10-OCT-2004 09:42:37.114 AM '; -- okay without displacement
       DBMS_OUTPUT.PUT_LINE( TO_CHAR(logoff));
    END;
    /I'm not sure if the above extract can help you....in this case give us some more info....
    Regards,
    Simon

  • DADs on WLS 11g (version 10.3.6.0) do not work (Error 404--Not Found)

    Actually we use Application Server 10g (version 10.1.2.3.0) for different Forms 10g Applications (roundabout 1000 Forms) and want to change to Forms 11g and Weblogic Server 11g (version 10.3.6.0). A Test-Application on the Weblogic Server works fine, but DAD’s do not work at all.
    In Enterprise Manager 10g i can configure DADs within the GUI of the Enterprise Manager, where i can see, if a connection could be established or not.
    In Enterprise Manager 11g Fusion Middleware Control this doesn't seem to exist anymore, so i tried to configure the DADs manually, but something has to be wrong or missing, because there is no connection to the database and the following error appears:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I added several DAD’s to /opt/oracle/product/Middleware/asinst_1/config/OHS/ohs1/mod_plsql/dads.conf like this:
    <Location /pls/jd-download-dev>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername w_web_user_download
    PlsqlDatabasePassword @BWKChfgPacV6yQL40lIKZqXUUA9wC4cmAw==
    PlsqlDatabaseConnectString jddev TNSFormat
    PlsqlNLSLanguage German_Germany.WE8ISO8859P1
    PlsqlAuthenticationMode Basic
    PlsqlDefaultPage w_anwendung.p_web_show_document
    PlsqlAlwaysDescribeProcedure Off
    PlsqlErrorStyle DebugStyle
    </Location>
    The passwords were obfuscated with dadTool.pl and the http-Server restarted with /opt/oracle/product/Middleware/asinst_1/bin/opmnctl restartproc process-type=OHS
    The files /opt/oracle/product/Middleware/asinst_1/config/OHS/ohs1/mod_plsql.cache.conf and /opt/oracle/product/Middleware/asinst_1/config/OHS/ohs1/moduleconf.plsql.conf were left unchanged.
    Our Test-Application generates the following link
    'http://172.106.2.7:9001/pls/jddevdev/B_ARCHIVE.P_ARCHIVE_VIEW?docfid=200'
    that seems to be ok, because when i replace IP and port with our old IAS it works fine, but the WebLogic Server generates the above mentioned error.
    To get some more information i searched an error_log in /opt/oracle/product/Middleware/asinst_1/diagnostics/logs/OHS/ohs1 but there isn’t any.
    I used the following Documentation for configuring the DADs which is for HTTP Server 11g Release 1 (version 11.1.1), because I could not find one for version 10.3.6.0:
    http://docs.oracle.com/cd/E23943_01/web.1111/e10144/under_mods.htm#i1055269
    So probably there are differences between configuring version 10.3.6.0 and version 11.1.1 and so something is wrong configured or missing...
    Thank you in advance for your help
    Udo

    Hi Raj,
    it is a Sparc Solaris 10
    and yes that's my enviorment.
    After some more tests it's seems it's not a real bug but no realy nice working solution.
    Eclipse uses for all instances the same secure storage, where OEPE also saves the password.
    And if I look right the pasword was saved without the user context, so if you use an other user he takes the same password from the old user.
    and I doesn't know how do OEPE check the connection in reality or only reply the last failed login message.
    After deleting the complete secure storage and test it again with the juno version it works well.

  • EPM 11.1.2.3 ,Error 404 - Not Found

    Hi All,
    I am getting the following error after my installation and configuration of EPM 11.1.2.3 and when I try to access the Workspace URL.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol --
    HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the
    Request-URI. No indication is given of whether the condition is temporary or
    permanent.
    If the server does not wish to make this information available to the client,
    the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code
    SHOULD be used if the server knows, through some internally configurable
    mechanism, that an old resource is permanently unavailable and has no forwarding
    address.
    I installed 11.1.2.3 in windows 7 ultimate OS and 64 bit and using sql server 2005 Database and configured Essbase,planning, hfm, arm, fcm,fdm ,hpcm, , everything was configured successfully but when I open the workspace URL it is throwing "Error 404 not found"
    I tried accessing http://machinename:7001/console (I replaced machinename with my machinename)
    even here I am getting the same error, but I checked the database and it has the table hss_component_types and it is populated with the various products.
    could you guide me
    Regards,
    SG
    The following is the error I am getting in C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services
    <Jul 9, 2013 7:30:18 PM CDT> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Jul 9, 2013 7:30:18 PM CDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Jul 9, 2013 7:30:18 PM CDT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\audit-client.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\css.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\ctg_custom.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\ldapbp.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\opencsv-1.8.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\registry-api.jar;C:\Oracle\Middleware\user_projects\domains\EPMSystem\lib\wlpool.jar>
    <Jul 9, 2013 7:30:18 PM CDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.2.5-50-153520-1.6.0_37-20121220-0844-windows-x86_64 from Oracle Corporation>
    <Jul 9, 2013 7:30:47 PM CDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >
    <Jul 9, 2013 7:30:57 PM CDT> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://SUBHASUBBU:7001.>
    <Jul 9, 2013 7:30:57 PM CDT> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    <Jul 9, 2013 7:30:57 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jul 9, 2013 7:30:57 PM CDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Jul 9, 2013 7:30:58 PM CDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\EPMServer0.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jul 9, 2013 7:30:58 PM CDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\EPMServer0.log00002. Log messages will continue to be logged in C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\EPMServer0.log.>
    <Jul 9, 2013 7:30:58 PM CDT> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\EPMServer0.log is opened. All server side log events will be written to this file.>
    OracleFileSSOWalletImpl.getWalletData: enter...
    OracleFileSSOWalletImpl.getWalletData: System.getProperty(user.name)=SUBHASUBBU$
    OracleFileSSOWalletImpl.getWalletData: locking (shared) dummy sso file..
    OracleFileSSOWalletImpl.getWalletData: locking (shared) sso file..
    Oracle Wallet: wallet size 8349
    OracleWallet: getSecretStore
    OracleSecretStore: loading wallet from stream
    OracleSSOKeyStoreImpl: engineLoad
    OracleKeyStoreSpi: Loading wallet from stream
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: Opening safe 0
    Processing TP 0
    Storing TP 0 as CN=Entrust.net Secure Server Certification Authority
    Processing TP 1
    Storing TP 1 as CN=Entrust.net Secure Server Certification Authority 1
    Processing TP 2
    Storing TP 2 as CN=Entrust.net Certification Authority (2048)
    Processing TP 3
    Storing TP 3 as CN=GTE CyberTrust Global Root
    Processing TP 4
    Storing TP 4 as OU=Secure Server Certification Authority
    Processing TP 5
    Storing TP 5 as OU=Class 1 Public Primary Certification Authority
    Processing TP 6
    Storing TP 6 as OU=Class 2 Public Primary Certification Authority
    Processing TP 7
    Storing TP 7 as OU=Class 3 Public Primary Certification Authority
    OracleKeyStoreSpi: Storing Secret0
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret1
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret2
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret3
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Keystore Loaded
    OracleWallet: getSecretStore
    OracleFileSSOWalletImpl.getWalletData: enter...
    OracleFileSSOWalletImpl.getWalletData: System.getProperty(user.name)=SUBHASUBBU$
    OracleFileSSOWalletImpl.getWalletData: locking (shared) dummy sso file..
    OracleFileSSOWalletImpl.getWalletData: locking (shared) sso file..
    Oracle Wallet: wallet size 3941
    OracleWallet: getSecretStore
    OracleSecretStore: loading wallet from stream
    OracleSSOKeyStoreImpl: engineLoad
    OracleKeyStoreSpi: Loading wallet from stream
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: found cert bag
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: found secret store bag
    OracleKeyStoreSpi: Opening safe 0
    OracleKeyStoreSpi: Opening safe 0
    Processing TP 0
    Storing TP 0 as OU=Class 1 Public Primary Certification Authority
    Processing TP 1
    Storing TP 1 as CN=GTE CyberTrust Global Root
    Processing TP 2
    Storing TP 2 as OU=Class 2 Public Primary Certification Authority
    Processing TP 3
    Storing TP 3 as OU=Class 3 Public Primary Certification Authority
    OracleKeyStoreSpi: Storing Secret0
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret1
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret2
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Storing Secret3
    Getting sequence from bag
    Getting alias from sequence
    Getting secret from sequence
    OracleKeyStoreSpi: Keystore Loaded
    OracleWallet: getSecretStore
    <Jul 9, 2013 7:31:19 PM CDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jul 9, 2013 7:31:19 PM CDT> <Notice> <Security> <BEA-090083> <Storing boot identity in the file: C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\security\boot.properties>
    <Jul 9, 2013 7:31:41 PM CDT> <Warning> <JTA> <BEA-110503> <The migrator(the AdminServer for manual JTA migration policy, or the Singleton Master for automatic JTA migration policy) is not available. Will skip JTA TRS failback because isStrictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS of EPMServer0 has been migrated to backup server and the backup server is accessing the TLOG of EPMServer0. More safety can be achieved by setting isStrictOwnershipCheck to [true].>
    <Jul 9, 2013 7:31:42 PM CDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jul 9, 2013 7:31:42 PM CDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\access.log00002. Log messages will continue to be logged in C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs\access.log.>
    <Jul 9, 2013 7:32:18 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jul 9, 2013 7:32:18 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Using OraclePKI Provider
    javax.net.ssl.TrustManagerFactory supported
    javax.net.ssl.KeyManagerFactory supported
    Using OracleJSSE103 Provider
    <Jul 9, 2013 7:32:21 PM CDT> <Warning> <JDBC> <BEA-001552> <The logging last resource (LLR) data source accountreconciliation_datasource will not function when it is a participant in a global transaction that spans multiple WebLogic Server instances because remote JDBC support is disabled. LLR will function in single-server configurations.>
    <Jul 9, 2013 7:32:21 PM CDT> <Warning> <JDBC> <BEA-001552> <The logging last resource (LLR) data source financialclose_datasource will not function when it is a participant in a global transaction that spans multiple WebLogic Server instances because remote JDBC support is disabled. LLR will function in single-server configurations.>
    <Jul 9, 2013 7:33:42 PM CDT> <Warning> <Security> <BEA-090668> <Ignored deployment of role "Admin" for resource "type=<url>, application=DMS Application#11.1.1.1.0, contextPath=/dms, uri=/">
    <Jul 9, 2013 7:33:47 PM CDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'ACCOUNTRECONCILIATION [Version=11.1.2.0]' due to error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.soa.workflow.wc, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.soa.workflow.wc, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
    Truncated. see log file for complete stacktrace
    >
    <Jul 9, 2013 7:34:12 PM CDT> <Warning> <EJB> <BEA-010001> <While deploying EJB 'RuleService_AsyncRequestProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncRequestProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <Jul 9, 2013 7:34:12 PM CDT> <Warning> <EJB> <BEA-010001> <While deploying EJB 'RuleService_AsyncResponseProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncResponseProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <Jul 9, 2013 7:34:13 PM CDT> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\aps\AppServer\InstallableApps\Common\aps.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Jul 9, 2013 7:34:13 PM CDT> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\APS_11.1.2.0\mizf54/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Jul 9, 2013 7:35:15 PM CDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'FINANCIALCLOSE [Version=11.1.2.0]' due to error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.soa.workflow.wc, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.soa.workflow.wc, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
    Truncated. see log file for complete stacktrace
    >
    <Jul 9, 2013 7:35:44 PM CDT> <Warning> <J2EE> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: com/oracle/adfm, Specification-Version: 1, referenced from: C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\FMADFWEB_11.1.2.0\nw1g9o]. Make sure the referenced optional package has been deployed as a library.>
    <Jul 9, 2013 7:35:49 PM CDT> <Warning> <EJB> <BEA-010001> <While deploying EJB 'ActionsService_AsyncRequestProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncRequestProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <Jul 9, 2013 7:35:49 PM CDT> <Warning> <EJB> <BEA-010001> <While deploying EJB 'ActionsService_AsyncResponseProcessorMDB', class oracle.j2ee.ws.server.jaxws.AsyncResponseProcessorMDB was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <Jul 9, 2013 7:36:57 PM CDT> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\SHAREDSERVICES_11.1.2.0\dt7o9d\interop.war/WEB-INF/web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Jul 9, 2013 7:38:12 PM CDT> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\odi\setup\manual\oracledi-agent\oraclediagent.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Jul 9, 2013 7:38:12 PM CDT> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\oraclediagent\cn250y/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Jul 9, 2013 7:38:12 PM CDT> <Warning> <J2EE> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.bam.odi.library, Specification-Version: 11.1.1, referenced from: C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\oraclediagent\cn250y]. Make sure the referenced optional package has been deployed as a library.>
    <Jul 9, 2013 7:38:13 PM CDT> <Emergency> <Deployer> <BEA-149259> <Server 'EPMServer0' in cluster 'EPMServer' is being brought up in administration state due to failed deployments.>
    Hyperion Provider Services - Release 11.1.2.3.4408
    Copyright (c) 1991, 2013 Oracle and / or its affiliates. All rights reserved.
    connection mode : HTTP
    essbase.properties: C:\Oracle\Middleware\EPMSystem11R1/common/EssbaseJavaAPI/11.1.2.0/bin/essbase.properties
    java System properties -DESS_ES_HOME: C:\Oracle\Middleware\EPMSystem11R1/common/EssbaseJavaAPI/11.1.2.0
    Mode: Non Fusion read from Registry
    registry.isRegistryDatabaseCreated()true
    Registry was initialized sucessfully
    Component was found from component type DISC_MAN_PRODUCT
    Updating version Disclosure_dbVersion with DISC_MAN_PRODUCT
    Warning: Starting ADF Library jar post-deployment on WebLogic Server. Is "provider-lazy-inited" init-param missing from LibraryFilter? Ignore this warning if the ADFJspResourceProvider is not being used.
    Started: ADF Library non-ADFJspResourceProvider post-deployment
    Finished: ADF Library non-ADFJspResourceProvider post-deployment (millis): 46
    Essbase® Administration Services - Version  11.1.2.3.000.4415
    Copyright © 1991, 2013 Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. No portion hereof may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or information storage and retrieval systems, for any purpose other than the recipient's personal use, without the express written permission of Oracle.
    US Patent Number 5,359,724
    US Patent Number 6,317,750
    Current time stamp: Tue Jul 09 19:38:54 CDT 2013
    Server started successfully
    Waiting for client requests
    HRContextListener::contextInitialized
    Warning: Starting ADF Library jar post-deployment on WebLogic Server. Is "provider-lazy-inited" init-param missing from LibraryFilter? Ignore this warning if the ADFJspResourceProvider is not being used.
    Started: ADF Library non-ADFJspResourceProvider post-deployment
    Finished: ADF Library non-ADFJspResourceProvider post-deployment (millis): 203
    - WEBLOGIC
    null
    - The AMHM configuration file path is..nullconf
    -  getting attributes for bsp.jsr: [Migration, Ant-Version, Manifest-Version, Created-By, Version]
    -  going to get value for Migration attribute
    -  Encryption Type : AES
    - Invocation of generateSecurityFile Successful
    - userName :
    - ServiceID :
    - applicationName :
    - Configuration File (config.xml) does not exist under C:\Oracle\Middleware\user_projects\epmsystem1\Planning\planning1\config.xml Process aborted.
    - Migration Failed
    Utf8Filter: forceRequestCharacterEncoding set to true (init-param=true)
    Utf8Filter: repairRequestParameters set to false (init-param=false)
    Utf8Filter: rebuildPathInfo set to false (init-param=false)
    Utf8Filter: revertRequestURI set to true (init-param=true)
    Utf8Filter: settings are true/false/false/true
    Initializing CORBA ORB.
    CORBA ORB initialization complete.
    Loading configuration from registry
    WSBaseServlet.setDefaultGSMContext(): Servlet GSM context. host=192.168.204.1:6800
    Log configuration: file:/C:/Oracle/Middleware/user_projects/epmsystem1/ReportingAnalysis/RAFrameworkWebapp/WEB-INF/logging.properties
    <Jul 9, 2013 7:39:39 PM CDT> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Jul 9, 2013 7:39:39 PM CDT> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of EPMServer.>
    <Jul 9, 2013 7:39:44 PM CDT> <Warning> <Log Management> <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.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[7]" is now listening on fe80:0:0:0:0:5efe:c0a8:ed01:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[9]" is now listening on fe80:0:0:0:0:100:7f:fffe:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[13]" is now listening on 0:0:0:0:0:0:0:1:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:0:5efe:c0a8:cc01:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[5]" is now listening on fe80:0:0:0:0:5efe:c0a8:7:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[12]" is now listening on 127.0.0.1:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[8]" is now listening on fe80:0:0:0:3415:3499:e650:c29e:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[10]" is now listening on fe80:0:0:0:2d02:d309:55d5:a150:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[11]" is now listening on fe80:0:0:0:5894:d88c:c022:f32b:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 192.168.204.1:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 192.168.0.7:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[6]" is now listening on fe80:0:0:0:c885:cffb:be7a:3e0b:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on fe80:0:0:0:1d4d:5292:d06b:f62b:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.237.1:9000 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Jul 9, 2013 7:40:09 PM CDT> <Notice> <WebLogicServer> <BEA-000358> <Started WebLogic Independent Managed Server "EPMServer0" for domain "EPMSystem" running in Production Mode>
    <Jul 9, 2013 7:40:09 PM CDT> <Warning> <Server> <BEA-002611> <Hostname "SUBHASUBBU", maps to multiple IP addresses: 192.168.204.1, 192.168.237.1, 192.168.0.7, fe80:0:0:0:c885:cffb:be7a:3e0b%18, fe80:0:0:0:1d4d:5292:d06b:f62b%20, fe80:0:0:0:3415:3499:e650:c29e%15>
    <Jul 9, 2013 7:40:09 PM CDT> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>
    <Jul 9, 2013 7:40:11 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Jul 9, 2013 7:40:11 PM CDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in ADMIN mode>
    <Jul 9, 2013 8:11:16 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM HSS_COMPONENT_TYPES WHERE 1 = 0" set up for pool "EPMSystemRegistry" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:11:16 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM V8_VERSION WHERE 1 = 0" set up for pool "raframework_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:11:54 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on fe80:0:0:0:c885:cffb:be7a:3e0b:54,190 during the configured idle timeout of 5 secs>
    <Jul 9, 2013 8:12:04 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on fe80:0:0:0:c885:cffb:be7a:3e0b:54,198 during the configured idle timeout of 5 secs>
    <Jul 9, 2013 8:12:19 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 0:0:0:0:0:0:0:1:54,216 during the configured idle timeout of 5 secs>
    <Jul 9, 2013 8:12:41 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM HSS_COMPONENT_TYPES WHERE 1 = 0" set up for pool "EPMSystemRegistry" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:41 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM ARM_ATTRIBUTES WHERE 1 = 0" set up for pool "accountreconciliation_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:41 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM AIF_LOOKUP_MAPPINGS WHERE 1 = 0" set up for pool "aif_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:41 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM CALCMGRCONFIG WHERE 1 = 0" set up for pool "calc_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:41 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM DISCMAN_COUNTER WHERE 1 = 0" set up for pool "discman_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM SERVERLOGID WHERE 1 = 0" set up for pool "eas_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM FCC_USER_ATTRIBUTES WHERE 1 = 0" set up for pool "financialclose_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "select count(*) from SNP_LOC_REP" set up for pool "odiMasterRepository" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "select count(*) from SNP_LOC_REP" set up for pool "odiMasterRepository" failed with exception: "java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "select count(*) from SNP_LOC_REPW" set up for pool "odiWorkRepository" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM HSPSYS_CLUSTER WHERE 1 = 0" set up for pool "planning_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:12:46 PM CDT> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM HPM_APPLICATION WHERE 1 = 0" set up for pool "profitability_datasource" failed with exception: "java.sql.SQLNonTransientConnectionException: [FMWGEN][SQLServer JDBC Driver]socket write error: Connection reset by peer.".>
    <Jul 9, 2013 8:18:49 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on fe80:0:0:0:c885:cffb:be7a:3e0b:54,579 during the configured idle timeout of 5 secs>
    <Jul 9, 2013 8:22:29 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on fe80:0:0:0:c885:cffb:be7a:3e0b:54,820 during the configured idle timeout of 5 secs>
    <Jul 9, 2013 8:29:44 PM CDT> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on fe80:0:0:0:c885:cffb:be7a:3e0b:55,178 during the configured idle timeout of 5 secs>

    First of all "I installed 11.1.2.3 in windows 7 ultimate OS", it is not a supported OS so if you want assistance problem solving you should stick with a supported OS.
    It also looks like you have installed a whole range of products some requiring additional configuration and the requirement of SOA.
    I recommend starting with a support OS and only install products that are required.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • BAPI_SALESORDER_CHANGE: Error-Item not found

    Hi,
    I am calling BAPI_SLESORDER_CHANGE from an enhancement in the include MV45AF0B_BELEG_SICHERN. This will be called after the commit work of sales order. Im using this BAPI for the purpose of changing/updating the Inquiry line item from which the SO is created.
    When I execute the BAPI in SE37 by passing the Inquiry no. & item to be updated, it is not giving any error. In my enhancement, I am passing the same values but getting the error: ITEM NOT FOUND.
    When I debugged the BAPI, the error is raised in the Fm SD_SALES_ITEM_READ.
    In the below code in FM, VBAP is getting filled inside the PERFORM VBAP_BEARBEITEN_VORBEREITEN but when it comes out of this subroutine, the VBAP is initial.
    But when executing with SE37, this VBAP value is not getting cleared after the subroutine.
      PERFORM XVBAP_LESEN_DIREKT_SVBAP(SAPFV45P) USING ITEM_NUMBER.
      PERFORM VBAP_BEARBEITEN_VORBEREITEN(SAPFV45P).
      EVBAP = VBAP.
    Please help me out to resolve this issue.

    Yes,
    but in sales order creation you are going thru a different code:
    * Anlegen <= Here from sales order creation
      IF SVBAP-TABIX = 0.
        CLEAR:  MAEPV,
                MAAPV,
                MTCOM,
                XVBUP,
                XVBAPF,
                KONDD,
                XVBAP.
         *VBAP = XVBAP.                    " Getuntes clear
        HVBAP = XVBAP.                     " Getuntes clear
         *HVBAP = XVBAP.                   " Getuntes clear
        VBAP = XVBAP.                      " Getuntes clear
         *MTCOM = MTCOM.                   " Getuntes clear
        MOVE-CORRESPONDING XVBAP TO VBAPD. " Getuntes clear
         *VBAPD = VBAPD.                   " Getuntes clear
        CLEAR: HVBKD, *HVBKD.
    * Steuerflag für Textverarbeitung initialisieren
        CLEAR NO_TEXT_COPY-ITEM.
        clear no_text_copy-check.
      ELSE.
    * Ändern <= Here from SE37
        VBAP = XVBAP.
    It's a completely different behaviour!
    Regards,
    Klaus

  • Error: Document not found. (WWC-46000) while updating a form whit blob items

    Hi all,
    I have to manage a table-based form. The table has a BLOB field that allows NULL.
    The blob field of the form is hidden.
    When I try to INSERT all works well but when I attempt to UPDATE I get "Error: Document not found. (WWC-46000)".
    Have you some suggestions ?
    Thanks,
    Antonino
    p.s. Oracle Portal 3.0.7.6.2 / NT

    I have the same problem. I have one form to insert file (works fine), and another form to update that record, but not the file. The fields of the file (blob and mime type) are not on the form at all, and getting the message WWC-46000.

  • Error 404--Not Found while accessing web app through Weblogic 6.1

    Hi everybody,
              I am new to Weblogic and recently installed Weblogic6.1
              on my machine and I am trying to access my application using weblogic
              and it gives
              Error 404--Not Found
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.4.5 404 Not Found
              I have uploaded the WAR file of my application using the Admin
              console. The WAR file is place under
              \bea\wlserver6.1\config\mydomain\applications\screen.war.
              What am I doing wrong ?
              Thanks is advance.
              PS: I am also including my web.xml file
              <?xml version="1.0" encoding="ISO-8859-1"?>
              <!DOCTYPE web-app
              PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
              "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <session-config>
              <session-timeout>-1</session-timeout>
              </session-config>
              <!-- Action Servlet Configuration -->
              <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              <init-param>
              <param-name>application</param-name>
              <param-value>resources.nmr.ApplicationResources</param-value>
              </init-param>
              <init-param>
              <param-name>config</param-name>
              <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <init-param>
              <param-name>debug</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>detail</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>validate</param-name>
              <param-value>true</param-value>
              </init-param>
              <load-on-startup>2</load-on-startup>
              </servlet>
              <!-- Action Servlet Mapping -->
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <!-- PDF servlet configuration -->
              <servlet>
              <servlet-name>pdf</servlet-name>
              <servlet-class>com.abbott.gprd.servlets.PdfServlet</servlet-class>
              </servlet>
              <!-- PDF servlet Mapping -->
              <servlet-mapping>
              <servlet-name>pdf</servlet-name>
              <url-pattern>/pdf</url-pattern>
              </servlet-mapping>
              <!-- MIME Mapping -->
              <mime-mapping>
              <extension>mol</extension>
              <mime-type>chemical/x-mdl-molfile</mime-type>
              </mime-mapping>
              <!-- The Welcome File List -->
              <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
              </welcome-file-list>
              <!-- Application Tag Library Descriptor -->
              <taglib>
              <taglib-uri>/WEB-INF/app.tld</taglib-uri>
              <taglib-location>/WEB-INF/app.tld</taglib-location>
              </taglib>
              <!-- Struts Tag Library Descriptors -->
              <taglib>
              <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/nmr.tld</taglib-uri>
              <taglib-location>/WEB-INF/nmr.tld</taglib-location>
              </taglib>
              </web-app>
              

    hmm
              it all looks ok to me
              what happens if you try to access an image or something in your war (ie
              something not java related)
              also - i have seen on some machines that localhost doesnt work but 127.0.0.1
              does work
              your app should be trying to access index.jsp which should be in the root
              directory of your war
              does index.jsp exist and is it in the root directory of your war?
              lastly - i noticed you have a startup servlet. Put a system.out in the init
              method of the servlet. If the servlet is being deployed OK then you should
              see some output in the console
              "Ravi" <[email protected]> wrote in message
              news:[email protected]...
              > I am specifying the same http://localhost:7001/screen and it still
              > gives the same error.
              >
              > Following is part of my cofig.xml where myapp is specified.
              >
              > <CustomRealm
              >
              ConfigurationData="user.filter=(&(cn=%u)(objectclass=person));user.dn=ou
              =people,
              > o=example.com;server.principal=cn=admin,
              >
              o=example.com;membership.filter=(&(member=%M)(objectclass=groupofuniquen
              ames));group.filter=(&(cn=%g)(objectclass=groupofuniquenames));server.ho
              st=ldapserver.example.com;server.ssl=true;group.dn=ou=groups,
              > o=example.com"
              > Name="defaultLDAPRealmForNovellDirectoryServices"
              > Notes="This is provided as an example. Before enabling this
              > Realm, you must edit the configuration parameters as appropriate for
              > your environment."
              > Password="{3DES}/4XkW5rmVvBHzFtI9SRK/g=="
              > RealmClassName="weblogic.security.ldaprealmv2.LDAPRealm"/>
              > <Server ListenPort="7001" Name="myserver" NativeIOEnabled="true"
              > TransactionLogFilePrefix="config/mydomain/logs/">
              > <Log FileName="config/mydomain/logs/weblogic.log"
              > Name="myserver"/>
              > <SSL Enabled="true" ListenPort="7002" Name="myserver"
              > ServerCertificateChainFileName="config/mydomain/ca.pem"
              > ServerCertificateFileName="config/mydomain/democert.pem"
              > ServerKeyFileName="config/mydomain/demokey.pem"/>
              > <WebServer DefaultWebApp="DefaultWebApp"
              > LogFileName="./config/mydomain/logs/access.log"
              > LoggingEnabled="true" Name="myserver"/>
              > <ServerDebug Name="myserver"/>
              > <ExecuteQueue Name="default"/>
              > <KernelDebug Name="myserver"/>
              > <ServerStart Name="myserver"/>
              > </Server>
              > <Application Deployed="true" Name="screen"
              > Path=".\config\mydomain\applications">
              > <WebAppComponent Name="screen" Targets="myserver"
              > URI="screen.war"/>
              > </Application>
              > <SNMPAgent Name="mydomain"/>
              > <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
              > <ApplicationManager Name="mydomain"/>
              > <JTA Name="mydomain"/>
              >
              > Thanks in advance.
              > Ravi.
              >
              >
              > "Matt Krevs" <[email protected]> wrote in message
              news:<[email protected]>...
              > > what url are you specifying?
              > >
              > > i would guess that http://localhost/screen-web would work. Hard to say
              > > without also seeing your config.xml
              > >
              > > The critical item in config.xml is the value of URI in the
              webappcomponent
              > > element for your application
              > >
              > > eg if it was
              > >
              > > <WebAppComponent Name="myapp-web" Targets="myerver" URI="myapp-web"/>
              > >
              > > then the url you would call is http://localhost/myapp-web
              > >
              > > "Ravi" <[email protected]> wrote in message
              > > news:[email protected]...
              > > > Hi everybody,
              > > > I am new to Weblogic and recently installed Weblogic6.1
              > > > on my machine and I am trying to access my application using weblogic
              > > > and it gives
              > > >
              > > > Error 404--Not Found
              > > > From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              > > > 10.4.5 404 Not Found
              > > >
              > > > I have uploaded the WAR file of my application using the Admin
              > > > console. The WAR file is place under
              > > > \bea\wlserver6.1\config\mydomain\applications\screen.war.
              > > >
              > > > What am I doing wrong ?
              > > >
              > > > Thanks is advance.
              > > >
              > > > PS: I am also including my web.xml file
              > > >
              > > > <?xml version="1.0" encoding="ISO-8859-1"?>
              > > >
              > > > <!DOCTYPE web-app
              > > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
              > > > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              > > >
              > > > <web-app>
              > > >
              > > > <session-config>
              > > > <session-timeout>-1</session-timeout>
              > > > </session-config>
              > > >
              > > > <!-- Action Servlet Configuration -->
              > > > <servlet>
              > > > <servlet-name>action</servlet-name>
              > > >
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              > > > <init-param>
              > > > <param-name>application</param-name>
              > > > <param-value>resources.nmr.ApplicationResources</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>config</param-name>
              > > > <param-value>/WEB-INF/struts-config.xml</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>debug</param-name>
              > > > <param-value>2</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>detail</param-name>
              > > > <param-value>2</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>validate</param-name>
              > > > <param-value>true</param-value>
              > > > </init-param>
              > > > <load-on-startup>2</load-on-startup>
              > > >
              > > > </servlet>
              > > >
              > > > <!-- Action Servlet Mapping -->
              > > > <servlet-mapping>
              > > > <servlet-name>action</servlet-name>
              > > > <url-pattern>*.do</url-pattern>
              > > > </servlet-mapping>
              > > >
              > > > <!-- PDF servlet configuration -->
              > > > <servlet>
              > > > <servlet-name>pdf</servlet-name>
              > > >
              <servlet-class>com.abbott.gprd.servlets.PdfServlet</servlet-class>
              > > > </servlet>
              > > >
              > > >
              > > > <!-- PDF servlet Mapping -->
              > > > <servlet-mapping>
              > > > <servlet-name>pdf</servlet-name>
              > > > <url-pattern>/pdf</url-pattern>
              > > > </servlet-mapping>
              > > >
              > > > <!-- MIME Mapping -->
              > > > <mime-mapping>
              > > > <extension>mol</extension>
              > > > <mime-type>chemical/x-mdl-molfile</mime-type>
              > > > </mime-mapping>
              > > >
              > > >
              > > > <!-- The Welcome File List -->
              > > > <welcome-file-list>
              > > > <welcome-file>index.jsp</welcome-file>
              > > > </welcome-file-list>
              > > >
              > > > <!-- Application Tag Library Descriptor -->
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/app.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/app.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <!-- Struts Tag Library Descriptors -->
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/nmr.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/nmr.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > </web-app>
              

  • "Error: Document not found (WWC-46000)" with a form based on a table with blob item

    Hi all,
    I have to manage a table-based form. One of the fields of the table is BLOB and the corrisponding field of the form is HIDDEN.
    When I push the INSERT button all works well but when I try to UPDATE I get "Error: Document not found. (WWC-46000)".
    Have you some suggestions ?
    Thanks,
    Antonino
    p.s. Oracle Portal 3.0.7.6.2 / NT
    null

    Sorry, I think I did not explain well my problem.
    Imagine this simple table:
    key number;
    description varchar2(50);
    image blob;
    I need to make a form that contains the corresponding "key" field and the "description" field but not the "image" one. I don't want to allow the end user to upload images!
    When I insert a row the form works well and in the "image" field of the table an empty blob or null (now I don't remember) is stored: that's ok.
    Now imagine I want to change the value of the "description" field. I submit a query for the right key, I type a new value for the description and finally I push UPDATE button but....an error occours.
    I think this error is related with the Blob item of the table but I'm not sure.
    Thanks again,
    Antonino
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dmitry Nonkin([email protected]):
    Antonino,
    If I understood the problem correctly:
    The form's item type for BLOB column used to upload content cannot be hidden, that's why we have a special item type FileUpload(binary).
    Thanks,
    Dmitry<HR></BLOCKQUOTE>
    null

  • Error 404--Not Found - while running report in 11g

    Dear All ,
    I have my oracle application in 10g R1. Now we are migarting that to 11g .
    There is a temporary directory where we are generating report output (PDF)
    we are using an alias name web_reps for this folder .
    Given the AliasMatch in forms.conf and in registry given the alias name for FORMS_MAPPING .
    It was working with 10g . Tried the same in 11g so that report is generating in the folder (PDF)
    but while openeing the file using web.showdocument () using the alias name it is giving the below error .
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    If any body know this issue pls help .
    Thanks
    Jyo

    Are you using apache in front of your weblogics, or just plain weblogic? Also please post the full version of your 11g installation (11.1.1.x or 11.1.2.x). If you are using no apache and the 11.1.1.x version for development (without apache) the forms servlet and the reports servlet are deployed on different weblogic instances running on a different port; meaning forms is available under e.g.
    http://ias:9001/forms/frmservlet
    whereas reports is available under
    http://ias:9002/reports/rwservlet
    but when running reports via web.show_document it assumes both are running on the same port. Also make sure your weblogic instances are up and running. So either you use apache for production (in 11.1.1.x or 11.1.2.x) or you go for 11.1.2 in development where the forms and the reports servlets are deployed on the very same port. As far as I am concerned I'd go for 11.1.2 as the production environment is nothing different from 11.1.1 and the development environment is a hell of a lot easier to install.
    cheers

  • Error 404 -- NOT FOUND when running a form in form 11g

    Hi All,
    I got this problem when I run the forms using internet explorer.
    I work on Forms 11g which uses weblogic 10.3 for web deployment of the forms.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Can any one tell me where it went wrong.
    Thanks

    Let's start by clearing up some confusion.
    PORTS
    In version 11.1.1.x here are how the common ports are defined by default:
    1. HTTP Server - 8888
    2. WLS_FORMS - 9001
    3. WLS_REPORTS - 9002
    4. WLS Admin Server - 7001
    So, if you understand how ports work in general, you should see that there are two ways to run a form. You can either go through HTTP Server or call WLS_FORMS directly. This means that both of the following would work, although one would be a direct path and the other would route the request through the HTTP Server:
    <li>http://ie1fdtfc5zl1s:9001/forms/frmservlet?config=frmdemo
    <li>http://ie1fdtfc5zl1s:8888/forms/frmservlet?config=frmdemo
    Port 7001, will always be the Admin Server port by default for the Classic domain. By default, the only thing you can do from here is access EM or WLS Console.
    As for the tns issue, by default, both the Builder and runtime will expect to find tnsnames.ora in the Instance Home \config so be sure you are adding the correct entries to the correct file.
    You can hard code a path to the file which you prefer be used by setting TNS_ADMIN in default.env (e.g. TNS_ADMIN=C:\Oracle\mytnsdirectory). This will apply only to running forms and not the Builder.
    Also, here is something which often is confusing to many people.... just because you launched your form from the Builder does not mean that the running form has anything to do with the Builder at that point. In other words, when you click on the RunForm button in the builder all you are doing is passing a url to a browser. The browser and the form are not using any of the Builder's settings except those which may have been passed in the URL (e.g. username/password). ALL running forms are considered "runtime". This means all of the environment configuration information for a running form will need to be set in default.env. The Builder, on the other hand will rely on the System variable, Windows Registry (or shell if on Unix).

Maybe you are looking for